@covalent/markdown 4.0.0 → 4.1.0-develop.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -20
- package/_markdown-theme.scss +13 -1
- package/covalent-markdown.d.ts +2 -1
- package/esm2020/covalent-markdown.mjs +5 -0
- package/esm2020/lib/markdown-loader/markdown-loader.service.mjs +41 -0
- package/esm2020/lib/markdown-utils/markdown-utils.mjs +115 -0
- package/esm2020/lib/markdown.component.mjs +292 -0
- package/esm2020/lib/markdown.module.mjs +21 -0
- package/esm2020/public_api.mjs +5 -0
- package/fesm2015/covalent-markdown.mjs +467 -0
- package/fesm2015/covalent-markdown.mjs.map +1 -0
- package/fesm2020/covalent-markdown.mjs +464 -0
- package/fesm2020/covalent-markdown.mjs.map +1 -0
- package/{markdown-loader → lib/markdown-loader}/markdown-loader.service.d.ts +3 -0
- package/lib/markdown-utils/markdown-utils.d.ts +9 -0
- package/{markdown.component.d.ts → lib/markdown.component.d.ts} +9 -4
- package/lib/markdown.module.d.ts +9 -0
- package/package.json +28 -24
- package/public_api.d.ts +4 -4
- package/bundles/covalent-markdown.umd.js +0 -1055
- package/bundles/covalent-markdown.umd.js.map +0 -1
- package/bundles/covalent-markdown.umd.min.js +0 -16
- package/bundles/covalent-markdown.umd.min.js.map +0 -1
- package/covalent-markdown.metadata.json +0 -1
- package/esm2015/covalent-markdown.js +0 -10
- package/esm2015/index.js +0 -7
- package/esm2015/markdown-loader/markdown-loader.service.js +0 -69
- package/esm2015/markdown-utils/markdown-utils.js +0 -183
- package/esm2015/markdown.component.js +0 -439
- package/esm2015/markdown.module.js +0 -21
- package/esm2015/public_api.js +0 -10
- package/fesm2015/covalent-markdown.js +0 -724
- package/fesm2015/covalent-markdown.js.map +0 -1
- package/index.d.ts +0 -1
- package/markdown-utils/markdown-utils.d.ts +0 -9
- package/markdown.component.scss +0 -641
- package/markdown.module.d.ts +0 -2
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"covalent-markdown.js","sources":["../../../src/platform/markdown/markdown-utils/markdown-utils.ts","../../../../src/platform/markdown/markdown.component.ts","../../../src/platform/markdown/markdown-loader/markdown-loader.service.ts","../../../../src/platform/markdown/markdown.module.ts"],"sourcesContent":["export function removeLeadingHash(str: string): string {\n if (str) {\n return str.replace(/^#+/, '');\n }\n return '';\n}\n\nexport function removeTrailingHash(str: string): string {\n if (str) {\n return str.replace(/\\#.*/, '');\n }\n return '';\n}\n\nexport function genHeadingId(str: string): string {\n if (str) {\n return removeLeadingHash(\n str\n .replace(/(_|-|\\s)+/g, '')\n // Remove certain special chars to create heading ids similar to those in github\n // borrowed from showdown\n // https://github.com/showdownjs/showdown/blob/develop/src/subParsers/makehtml/headers.js#L94\n .replace(/[&+$,\\/:;=?@\"#{}|^¨~\\[\\]`\\\\*)(%.!'<>]/g, ''),\n ).toLowerCase();\n }\n return '';\n}\n\nexport function scrollToAnchor(scope: HTMLElement, anchor: string, tryParent: boolean): boolean {\n if (scope && anchor) {\n const normalizedAnchor: string = genHeadingId(anchor);\n let headingToJumpTo: HTMLElement;\n const headingWithinComponent: HTMLElement = scope.querySelector(`[id=\"${normalizedAnchor}\"]`);\n\n if (headingWithinComponent) {\n headingToJumpTo = headingWithinComponent;\n } else if (tryParent) {\n const parent: HTMLElement = scope.parentElement;\n if (parent) {\n headingToJumpTo = parent.querySelector(`[id=\"${normalizedAnchor}\"]`);\n }\n }\n if (headingToJumpTo) {\n headingToJumpTo.scrollIntoView({ behavior: 'auto' });\n return true;\n }\n }\n return false;\n}\n\nexport function isAnchorLink(anchor: HTMLAnchorElement): boolean {\n if (anchor) {\n const href: string = anchor.getAttribute('href');\n if (href) {\n return href.startsWith('#');\n }\n }\n return false;\n}\nconst RAW_GITHUB_HOSTNAME: string = 'raw.githubusercontent.com';\n\nexport function rawGithubHref(githubHref: string): string {\n if (githubHref) {\n try {\n const url: URL = new URL(githubHref);\n if (url.hostname === RAW_GITHUB_HOSTNAME) {\n return url.href;\n } else if (isGithubHref(githubHref)) {\n url.hostname = RAW_GITHUB_HOSTNAME;\n url.pathname = url.pathname.split('/blob', 2).join('');\n return url.href;\n }\n } catch {\n return '';\n }\n }\n return '';\n}\n\nexport function isGithubHref(href: string): boolean {\n try {\n const temp: URL = new URL(href);\n return temp.hostname === 'github.com';\n } catch {\n return false;\n }\n}\n\nexport function isRawGithubHref(href: string): boolean {\n try {\n const temp: URL = new URL(href);\n return temp.hostname === RAW_GITHUB_HOSTNAME;\n } catch {\n return false;\n }\n}\n\nexport function renderVideoElements(html: string): string {\n const ytLongEmbed: RegExp =\n /!\\[(?:(?:https?:)?(?:\\/\\/)?)(?:(?:www)?.)?youtube.(?:.+?)\\/(?:(?:embed\\/)([\\w-]{11})(\\?[\\w%;-]+(?:=[\\w%;-]+)?(?:&[\\w%;-]+(?:=[\\w%;-]+)?)*)?)]/gi;\n const ytLongWatch: RegExp =\n /!\\[(?:(?:https?:)?(?:\\/\\/)?)(?:(?:www)?.)?youtube.(?:.+?)\\/(?:(?:watch\\?v=)([\\w-]{11})(&[\\w%;-]+(?:=[\\w%;-]+)?)*)]/gi;\n const ytShort: RegExp =\n /!\\[(?:(?:https?:)?(?:\\/\\/)?)?youtu.be\\/([\\w-]{11})\\??([\\w%;-]+(?:=[\\w%;-]+)?(?:&[\\w%;-]+(?:=[\\w%;-]+)?)*)?]/gi;\n const ytPlaylist: RegExp =\n /!\\[(?:(?:https?:)?(?:\\/\\/)?)(?:(?:www)?.)?youtube.(?:.+?)\\/(?:(?:playlist\\?list=)([\\w-]{34})(&[\\w%;-]+(?:=[\\w%;-]+)?)*)]/gi;\n\n function convert(match: string, id: string, flags: string): string {\n if (flags) {\n id += '?' + flags.replace(/&/gi, '&');\n }\n return `<iframe allow=\"fullscreen\" frameborder=\"0\" src=\"https://www.youtube.com/embed/${id}\"></iframe>`;\n }\n function convertPL(match: string, id: string, flags: string): string {\n if (flags) {\n id += flags.replace(/&/gi, '&');\n }\n return `<iframe allow=\"fullscreen\" frameborder=\"0\" src=\"https://www.youtube.com/embed/videoseries?list=${id}\"></iframe>`;\n }\n\n return html\n .replace(ytLongWatch, convert)\n .replace(ytLongEmbed, convert)\n .replace(ytShort, convert)\n .replace(ytPlaylist, convertPL);\n}\n","import {\n Component,\n AfterViewInit,\n ElementRef,\n Input,\n Output,\n EventEmitter,\n Renderer2,\n SecurityContext,\n OnChanges,\n SimpleChanges,\n HostBinding,\n HostListener,\n} from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\nimport {\n scrollToAnchor,\n genHeadingId,\n isAnchorLink,\n removeTrailingHash,\n rawGithubHref,\n isGithubHref,\n isRawGithubHref,\n renderVideoElements,\n} from './markdown-utils/markdown-utils';\n\ndeclare const require: any;\n/* tslint:disable-next-line */\nlet showdown: any = require('showdown/dist/showdown.js');\n\n// TODO: assumes it is a github url\n// allow override somehow\nfunction generateAbsoluteHref(currentHref: string, relativeHref: string): string {\n if (currentHref && relativeHref) {\n const currentUrl: URL = new URL(currentHref);\n const path: string = currentUrl.pathname.split('/').slice(1, -1).join('/');\n const correctUrl: URL = new URL(currentHref);\n\n if (relativeHref.startsWith('/')) {\n // url is relative to top level\n const orgAndRepo: string = path.split('/').slice(0, 3).join('/');\n correctUrl.pathname = `${orgAndRepo}${relativeHref}`;\n } else {\n correctUrl.pathname = `${path}/${relativeHref}`;\n }\n return correctUrl.href;\n }\n return undefined;\n}\n\nfunction normalizeHtmlHrefs(html: string, currentHref: string): string {\n if (currentHref) {\n const document: Document = new DOMParser().parseFromString(html, 'text/html');\n document.querySelectorAll('a[href]').forEach((link: HTMLAnchorElement) => {\n const url: URL = new URL(link.href);\n const originalHash: string = url.hash;\n if (isAnchorLink(link)) {\n if (originalHash) {\n url.hash = genHeadingId(originalHash);\n link.href = url.hash;\n }\n } else if (url.host === window.location.host) {\n // hosts match, meaning URL MIGHT have been malformed by showdown\n // url is a relative url or just a link to a part of the application\n if (url.pathname.endsWith('.md')) {\n // only check .md urls\n\n const hrefWithoutHash: string = removeTrailingHash(link.getAttribute('href'));\n\n url.href = generateAbsoluteHref(currentHref, hrefWithoutHash);\n\n if (originalHash) {\n url.hash = genHeadingId(originalHash);\n }\n link.href = url.href;\n }\n link.target = '_blank';\n } else {\n // url is absolute\n if (url.pathname.endsWith('.md')) {\n if (originalHash) {\n url.hash = genHeadingId(originalHash);\n }\n link.href = url.href;\n }\n link.target = '_blank';\n }\n });\n\n return new XMLSerializer().serializeToString(document);\n }\n return html;\n}\n\nfunction normalizeImageSrcs(html: string, currentHref: string): string {\n if (currentHref) {\n const document: Document = new DOMParser().parseFromString(html, 'text/html');\n document.querySelectorAll('img[src]').forEach((image: HTMLImageElement) => {\n const src: string = image.getAttribute('src');\n try {\n /* tslint:disable-next-line:no-unused-expression */\n new URL(src);\n if (isGithubHref(src)) {\n image.src = rawGithubHref(src);\n }\n } catch {\n image.src = generateAbsoluteHref(isGithubHref(currentHref) ? rawGithubHref(currentHref) : currentHref, src);\n }\n // gh svgs need to have ?sanitize=true\n if (isRawGithubHref(image.src)) {\n const url: URL = new URL(image.src);\n if (url.pathname.endsWith('.svg')) {\n url.searchParams.set('sanitize', 'true');\n image.src = url.href;\n }\n }\n });\n\n return new XMLSerializer().serializeToString(document);\n }\n return html;\n}\n\nfunction addIdsToHeadings(html: string): string {\n if (html) {\n const document: Document = new DOMParser().parseFromString(html, 'text/html');\n document.querySelectorAll('h1, h2, h3, h4, h5, h6').forEach((heading: HTMLElement) => {\n const id: string = genHeadingId(heading.innerHTML);\n heading.setAttribute('id', id);\n });\n return new XMLSerializer().serializeToString(document);\n }\n return html;\n}\n\n@Component({\n selector: 'td-markdown',\n styleUrls: ['./markdown.component.scss'],\n templateUrl: './markdown.component.html',\n})\nexport class TdMarkdownComponent implements OnChanges, AfterViewInit {\n private _content: string;\n private _simpleLineBreaks: boolean = false;\n private _hostedUrl: string;\n private _anchor: string;\n private _viewInit: boolean = false;\n /**\n * .td-markdown class added to host so ::ng-deep gets scoped.\n */\n @HostBinding('class') class: string = 'td-markdown';\n\n /**\n * content?: string\n *\n * Markdown format content to be parsed as html markup.\n *\n * e.g. README.md content.\n */\n @Input('content')\n set content(content: string) {\n this._content = content;\n }\n\n /**\n * simpleLineBreaks?: string\n *\n * Sets whether newline characters inside paragraphs and spans are parsed as <br/>.\n * Defaults to false.\n */\n @Input('simpleLineBreaks')\n set simpleLineBreaks(simpleLineBreaks: boolean) {\n this._simpleLineBreaks = simpleLineBreaks;\n }\n\n /**\n * hostedUrl?: string\n *\n * If markdown contains relative paths, this is required to generate correct urls.\n *\n */\n @Input('hostedUrl')\n set hostedUrl(hostedUrl: string) {\n this._hostedUrl = hostedUrl;\n }\n\n /**\n * anchor?: string\n *\n * Anchor to jump to.\n *\n */\n @Input('anchor')\n set anchor(anchor: string) {\n this._anchor = anchor;\n }\n\n /**\n * contentReady?: function\n * Event emitted after the markdown content rendering is finished.\n */\n @Output() contentReady: EventEmitter<undefined> = new EventEmitter<undefined>();\n\n constructor(private _renderer: Renderer2, private _elementRef: ElementRef, private _domSanitizer: DomSanitizer) {}\n\n @HostListener('click', ['$event'])\n clickListener(event: Event): void {\n const element: HTMLElement = <HTMLElement>event.srcElement;\n if (element.matches('a[href]') && isAnchorLink(<HTMLAnchorElement>element)) {\n this.handleAnchorClicks(event);\n }\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n // only anchor changed\n if (changes.anchor && !changes.content && !changes.simpleLineBreaks && !changes.hostedUrl) {\n scrollToAnchor(this._elementRef.nativeElement, this._anchor, true);\n } else {\n this.refresh();\n }\n }\n\n ngAfterViewInit(): void {\n if (!this._content) {\n this._loadContent((<HTMLElement>this._elementRef.nativeElement).textContent);\n }\n this._viewInit = true;\n }\n\n refresh(): void {\n if (this._content) {\n this._loadContent(this._content);\n } else if (this._viewInit) {\n this._loadContent((<HTMLElement>this._elementRef.nativeElement).textContent);\n }\n }\n\n /**\n * General method to parse a string markdown into HTML Elements and load them into the container\n */\n private _loadContent(markdown: string): void {\n if (markdown && markdown.trim().length > 0) {\n // Clean container\n this._renderer.setProperty(this._elementRef.nativeElement, 'innerHTML', '');\n // Parse html string into actual HTML elements.\n this._elementFromString(this._render(markdown));\n }\n // TODO: timeout required since resizing of html elements occurs which causes a change in the scroll position\n setTimeout(() => scrollToAnchor(this._elementRef.nativeElement, this._anchor, true), 250);\n this.contentReady.emit();\n }\n\n private async handleAnchorClicks(event: Event): Promise<void> {\n event.preventDefault();\n const url: URL = new URL((<HTMLAnchorElement>event.target).href);\n const hash: string = decodeURI(url.hash);\n scrollToAnchor(this._elementRef.nativeElement, hash, true);\n }\n\n private _elementFromString(markupStr: string): HTMLDivElement {\n // Renderer2 doesnt have a parsing method, so we have to sanitize and use [innerHTML]\n // to parse the string into DOM element for now.\n const div: HTMLDivElement = this._renderer.createElement('div');\n this._renderer.appendChild(this._elementRef.nativeElement, div);\n const html: string = this._domSanitizer.sanitize(SecurityContext.HTML, markupStr);\n const htmlWithAbsoluteHrefs: string = normalizeHtmlHrefs(html, this._hostedUrl);\n const htmlWithAbsoluteImgSrcs: string = normalizeImageSrcs(htmlWithAbsoluteHrefs, this._hostedUrl);\n const htmlWithHeadingIds: string = addIdsToHeadings(htmlWithAbsoluteImgSrcs);\n const htmlWithVideos: SafeHtml = renderVideoElements(htmlWithHeadingIds);\n this._renderer.setProperty(div, 'innerHTML', htmlWithVideos);\n return div;\n }\n\n private _render(markdown: string): string {\n // Trim leading and trailing newlines\n markdown = markdown.replace(/^(\\s|\\t)*\\n+/g, '').replace(/(\\s|\\t)*\\n+(\\s|\\t)*$/g, '');\n // Split markdown by line characters\n let lines: string[] = markdown.split('\\n');\n\n // check how much indentation is used by the first actual markdown line\n const firstLineWhitespace: string = lines[0].match(/^(\\s|\\t)*/)[0];\n\n // Remove all indentation spaces so markdown can be parsed correctly\n const startingWhitespaceRegex: RegExp = new RegExp('^' + firstLineWhitespace);\n lines = lines.map(function (line: string): string {\n return line.replace(startingWhitespaceRegex, '');\n });\n\n // Join lines again with line characters\n const markdownToParse: string = lines.join('\\n');\n\n // Convert markdown into html\n const converter: any = new showdown.Converter();\n converter.setOption('ghCodeBlocks', true);\n converter.setOption('tasklists', true);\n converter.setOption('tables', true);\n converter.setOption('literalMidWordUnderscores', true);\n converter.setOption('simpleLineBreaks', this._simpleLineBreaks);\n return converter.makeHtml(markdownToParse);\n }\n}\n","import { Injectable, SecurityContext } from '@angular/core';\nimport { DomSanitizer } from '@angular/platform-browser';\nimport { HttpClient, HttpResponse } from '@angular/common/http';\nimport { isGithubHref, rawGithubHref } from '../markdown-utils/markdown-utils';\n\n@Injectable()\nexport class TdMarkdownLoaderService {\n constructor(private _http: HttpClient, private _sanitizer: DomSanitizer) {}\n\n async load(url: string, httpOptions: object = {}): Promise<string> {\n const sanitizedUrl: string = this._sanitizer.sanitize(SecurityContext.URL, url);\n let urlToGet: string = sanitizedUrl;\n if (isGithubHref(sanitizedUrl)) {\n urlToGet = rawGithubHref(sanitizedUrl);\n }\n\n const response: HttpResponse<string> = await this._http\n .get(urlToGet, { ...httpOptions, responseType: 'text', observe: 'response' })\n .toPromise();\n const contentType: string = response.headers.get('Content-Type');\n if (contentType.includes('text/plain') || contentType.includes('text/markdown')) {\n return response.body;\n } else {\n throw Error(`${contentType} is not a handled content type`);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { HttpClientModule } from '@angular/common/http';\n\nimport { TdMarkdownComponent } from './markdown.component';\nimport { TdMarkdownLoaderService } from './markdown-loader/markdown-loader.service';\n\n@NgModule({\n imports: [CommonModule, HttpClientModule],\n declarations: [TdMarkdownComponent],\n exports: [TdMarkdownComponent],\n providers: [TdMarkdownLoaderService],\n})\nexport class CovalentMarkdownModule {}\n"],"names":[],"mappings":"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"}
|
package/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './public_api';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare function removeLeadingHash(str: string): string;
|
|
2
|
-
export declare function removeTrailingHash(str: string): string;
|
|
3
|
-
export declare function genHeadingId(str: string): string;
|
|
4
|
-
export declare function scrollToAnchor(scope: HTMLElement, anchor: string, tryParent: boolean): boolean;
|
|
5
|
-
export declare function isAnchorLink(anchor: HTMLAnchorElement): boolean;
|
|
6
|
-
export declare function rawGithubHref(githubHref: string): string;
|
|
7
|
-
export declare function isGithubHref(href: string): boolean;
|
|
8
|
-
export declare function isRawGithubHref(href: string): boolean;
|
|
9
|
-
export declare function renderVideoElements(html: string): string;
|
package/markdown.component.scss
DELETED
|
@@ -1,641 +0,0 @@
|
|
|
1
|
-
/* stylelint-disable no-duplicate-selectors */
|
|
2
|
-
:host {
|
|
3
|
-
&.td-markdown::ng-deep {
|
|
4
|
-
@font-face {
|
|
5
|
-
font-family: octicons-link;
|
|
6
|
-
src: url('data:font/woff;charset=utf-8;base64,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')
|
|
7
|
-
format('woff');
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
a {
|
|
11
|
-
background-color: transparent;
|
|
12
|
-
-webkit-text-decoration-skip: objects;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
a:active,
|
|
16
|
-
a:hover {
|
|
17
|
-
outline-width: 0;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
strong {
|
|
21
|
-
font-weight: inherit;
|
|
22
|
-
font-weight: bolder;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
h1 {
|
|
26
|
-
font-size: 2em;
|
|
27
|
-
margin: 0.67em 0;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
img {
|
|
31
|
-
border-style: none;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
svg:not(:root) {
|
|
35
|
-
overflow: hidden;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
code,
|
|
39
|
-
kbd,
|
|
40
|
-
pre {
|
|
41
|
-
font-family: monospace;
|
|
42
|
-
font-size: 1em;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
hr {
|
|
46
|
-
box-sizing: content-box;
|
|
47
|
-
height: 0;
|
|
48
|
-
overflow: visible;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
input {
|
|
52
|
-
font: inherit;
|
|
53
|
-
margin: 0;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
input {
|
|
57
|
-
overflow: visible;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
button:-moz-focusring,
|
|
61
|
-
[type='button']:-moz-focusring,
|
|
62
|
-
[type='reset']:-moz-focusring,
|
|
63
|
-
[type='submit']:-moz-focusring {
|
|
64
|
-
outline: 1px dotted ButtonText;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
[type='checkbox'] {
|
|
68
|
-
box-sizing: border-box;
|
|
69
|
-
padding: 0;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
table {
|
|
73
|
-
border-spacing: 0;
|
|
74
|
-
border-collapse: collapse;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
td,
|
|
78
|
-
th {
|
|
79
|
-
padding: 0;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
* {
|
|
83
|
-
box-sizing: border-box;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
input {
|
|
87
|
-
font: 13px/1.4 'Helvetica', 'arial', 'nimbussansl', 'liberationsans', 'freesans', 'clean', sans-serif,
|
|
88
|
-
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
a {
|
|
92
|
-
text-decoration: none;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
a:hover,
|
|
96
|
-
a:active {
|
|
97
|
-
text-decoration: underline;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
hr {
|
|
101
|
-
height: 0;
|
|
102
|
-
margin: 15px 0;
|
|
103
|
-
overflow: hidden;
|
|
104
|
-
background: transparent;
|
|
105
|
-
border-bottom-width: 1px;
|
|
106
|
-
border-bottom-style: solid;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
hr::before {
|
|
110
|
-
display: table;
|
|
111
|
-
content: '';
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
hr::after {
|
|
115
|
-
display: table;
|
|
116
|
-
clear: both;
|
|
117
|
-
content: '';
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
h1,
|
|
121
|
-
h2,
|
|
122
|
-
h3,
|
|
123
|
-
h4,
|
|
124
|
-
h5,
|
|
125
|
-
h6 {
|
|
126
|
-
margin-top: 0;
|
|
127
|
-
margin-bottom: 0;
|
|
128
|
-
line-height: 1.5;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
h1 {
|
|
132
|
-
font-size: 30px;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
h2 {
|
|
136
|
-
font-size: 21px;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
h3 {
|
|
140
|
-
font-size: 16px;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
h4 {
|
|
144
|
-
font-size: 14px;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
h5 {
|
|
148
|
-
font-size: 12px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
h6 {
|
|
152
|
-
font-size: 11px;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
p {
|
|
156
|
-
margin-top: 0;
|
|
157
|
-
margin-bottom: 10px;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
blockquote {
|
|
161
|
-
margin: 0;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
ul,
|
|
165
|
-
ol {
|
|
166
|
-
padding-left: 0;
|
|
167
|
-
margin-top: 0;
|
|
168
|
-
margin-bottom: 0;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
ol ol,
|
|
172
|
-
ul ol {
|
|
173
|
-
list-style-type: lower-roman;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
ul ul ol,
|
|
177
|
-
ul ol ol,
|
|
178
|
-
ol ul ol,
|
|
179
|
-
ol ol ol {
|
|
180
|
-
list-style-type: lower-alpha;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
dd {
|
|
184
|
-
margin-left: 0;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
code {
|
|
188
|
-
font-family: 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', monospace;
|
|
189
|
-
font-size: 12px;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
pre {
|
|
193
|
-
margin-top: 0;
|
|
194
|
-
margin-bottom: 0;
|
|
195
|
-
font: 12px 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', monospace;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.pl-0 {
|
|
199
|
-
padding-left: 0 !important;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.pl-1 {
|
|
203
|
-
padding-left: 3px !important;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.pl-2 {
|
|
207
|
-
padding-left: 6px !important;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.pl-3 {
|
|
211
|
-
padding-left: 12px !important;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
.pl-4 {
|
|
215
|
-
padding-left: 24px !important;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.pl-5 {
|
|
219
|
-
padding-left: 36px !important;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.pl-6 {
|
|
223
|
-
padding-left: 48px !important;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.form-select::-ms-expand {
|
|
227
|
-
opacity: 0;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
a:not([href]) {
|
|
231
|
-
color: inherit;
|
|
232
|
-
text-decoration: none;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
h1,
|
|
236
|
-
h2,
|
|
237
|
-
h3,
|
|
238
|
-
h4,
|
|
239
|
-
h5,
|
|
240
|
-
h6 {
|
|
241
|
-
margin-top: 1em;
|
|
242
|
-
margin-bottom: 16px;
|
|
243
|
-
font-weight: bold;
|
|
244
|
-
line-height: 1.4;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
h1 .octicon-link,
|
|
248
|
-
h2 .octicon-link,
|
|
249
|
-
h3 .octicon-link,
|
|
250
|
-
h4 .octicon-link,
|
|
251
|
-
h5 .octicon-link,
|
|
252
|
-
h6 .octicon-link {
|
|
253
|
-
color: #000000;
|
|
254
|
-
vertical-align: middle;
|
|
255
|
-
visibility: hidden;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
h1:hover .anchor,
|
|
259
|
-
h2:hover .anchor,
|
|
260
|
-
h3:hover .anchor,
|
|
261
|
-
h4:hover .anchor,
|
|
262
|
-
h5:hover .anchor,
|
|
263
|
-
h6:hover .anchor {
|
|
264
|
-
text-decoration: none;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
h1:hover .anchor .octicon-link,
|
|
268
|
-
h2:hover .anchor .octicon-link,
|
|
269
|
-
h3:hover .anchor .octicon-link,
|
|
270
|
-
h4:hover .anchor .octicon-link,
|
|
271
|
-
h5:hover .anchor .octicon-link,
|
|
272
|
-
h6:hover .anchor .octicon-link {
|
|
273
|
-
visibility: visible;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
h1 {
|
|
277
|
-
padding-bottom: 0.3em;
|
|
278
|
-
font-size: 2.25em;
|
|
279
|
-
line-height: 1.2;
|
|
280
|
-
border-bottom-width: 1px;
|
|
281
|
-
border-bottom-style: solid;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
h1 .anchor {
|
|
285
|
-
line-height: 1;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
h2 {
|
|
289
|
-
padding-bottom: 0.3em;
|
|
290
|
-
font-size: 1.75em;
|
|
291
|
-
line-height: 1.225;
|
|
292
|
-
border-bottom-width: 1px;
|
|
293
|
-
border-bottom-style: solid;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
h2 .anchor {
|
|
297
|
-
line-height: 1;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
h3 {
|
|
301
|
-
font-size: 1.5em;
|
|
302
|
-
line-height: 1.43;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
h3 .anchor {
|
|
306
|
-
line-height: 1.2;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
h4 {
|
|
310
|
-
font-size: 1.25em;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
h4 .anchor {
|
|
314
|
-
line-height: 1.2;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
h5 {
|
|
318
|
-
font-size: 1em;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
h5 .anchor {
|
|
322
|
-
line-height: 1.1;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
h6 {
|
|
326
|
-
font-size: 1em;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
h6 .anchor {
|
|
330
|
-
line-height: 1.1;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
p,
|
|
334
|
-
blockquote,
|
|
335
|
-
ul,
|
|
336
|
-
ol,
|
|
337
|
-
dl,
|
|
338
|
-
table,
|
|
339
|
-
pre {
|
|
340
|
-
margin-top: 0;
|
|
341
|
-
margin-bottom: 16px;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
hr {
|
|
345
|
-
margin: 16px 0;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
ul,
|
|
349
|
-
ol {
|
|
350
|
-
padding-left: 2em;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
ul ul,
|
|
354
|
-
ul ol,
|
|
355
|
-
ol ol,
|
|
356
|
-
ol ul {
|
|
357
|
-
margin-top: 0;
|
|
358
|
-
margin-bottom: 0;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
li > p {
|
|
362
|
-
margin-top: 16px;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
dl {
|
|
366
|
-
padding: 0;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
dl dt {
|
|
370
|
-
padding: 0;
|
|
371
|
-
margin-top: 16px;
|
|
372
|
-
font-size: 1em;
|
|
373
|
-
font-style: italic;
|
|
374
|
-
font-weight: bold;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
dl dd {
|
|
378
|
-
padding: 0 16px;
|
|
379
|
-
margin-bottom: 16px;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
blockquote {
|
|
383
|
-
padding: 0 15px;
|
|
384
|
-
border-left-width: 4px;
|
|
385
|
-
border-left-style: solid;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
blockquote > :first-child {
|
|
389
|
-
margin-top: 0;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
blockquote > :last-child {
|
|
393
|
-
margin-bottom: 0;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
table {
|
|
397
|
-
display: block;
|
|
398
|
-
width: 100%;
|
|
399
|
-
overflow: auto;
|
|
400
|
-
word-break: normal;
|
|
401
|
-
word-break: keep-all;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
table th {
|
|
405
|
-
font-weight: bold;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
table th,
|
|
409
|
-
table td {
|
|
410
|
-
padding: 6px 13px;
|
|
411
|
-
border-width: 1px;
|
|
412
|
-
border-style: solid;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
table tr {
|
|
416
|
-
border-top-width: 1px;
|
|
417
|
-
border-top-style: solid;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
img {
|
|
421
|
-
max-width: 100%;
|
|
422
|
-
box-sizing: content-box;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
code {
|
|
426
|
-
padding: 0;
|
|
427
|
-
padding-top: 0.2em;
|
|
428
|
-
padding-bottom: 0.2em;
|
|
429
|
-
margin: 0;
|
|
430
|
-
font-size: 85%;
|
|
431
|
-
border-radius: 3px;
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
code::before,
|
|
435
|
-
code::after {
|
|
436
|
-
letter-spacing: -0.2em;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
pre > code {
|
|
440
|
-
padding: 0;
|
|
441
|
-
margin: 0;
|
|
442
|
-
font-size: 100%;
|
|
443
|
-
word-break: normal;
|
|
444
|
-
white-space: pre;
|
|
445
|
-
background: transparent;
|
|
446
|
-
border: 0;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
.highlight {
|
|
450
|
-
margin-bottom: 16px;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.highlight pre,
|
|
454
|
-
pre {
|
|
455
|
-
padding: 16px;
|
|
456
|
-
overflow: auto;
|
|
457
|
-
font-size: 85%;
|
|
458
|
-
line-height: 1.45;
|
|
459
|
-
border-radius: 3px;
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
.highlight pre {
|
|
463
|
-
margin-bottom: 0;
|
|
464
|
-
word-break: normal;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
pre {
|
|
468
|
-
word-wrap: normal;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
pre code {
|
|
472
|
-
display: inline;
|
|
473
|
-
max-width: initial;
|
|
474
|
-
padding: 0;
|
|
475
|
-
margin: 0;
|
|
476
|
-
overflow: initial;
|
|
477
|
-
line-height: inherit;
|
|
478
|
-
word-wrap: normal;
|
|
479
|
-
background-color: transparent;
|
|
480
|
-
border: 0;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
pre code::before,
|
|
484
|
-
pre code::after {
|
|
485
|
-
content: normal;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
kbd {
|
|
489
|
-
display: inline-block;
|
|
490
|
-
padding: 3px 5px;
|
|
491
|
-
font-size: 11px;
|
|
492
|
-
line-height: 10px;
|
|
493
|
-
vertical-align: middle;
|
|
494
|
-
border-style: solid;
|
|
495
|
-
border-width: 1px;
|
|
496
|
-
border-radius: 3px;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
.pl-c {
|
|
500
|
-
color: #969896;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
.pl-c1,
|
|
504
|
-
.pl-s .pl-v {
|
|
505
|
-
color: #0086b3;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
.pl-e,
|
|
509
|
-
.pl-en {
|
|
510
|
-
color: #795da3;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
.pl-s .pl-s1,
|
|
514
|
-
.pl-smi {
|
|
515
|
-
color: #333333;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
.pl-ent {
|
|
519
|
-
color: #63a35c;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
.pl-k {
|
|
523
|
-
color: #a71d5d;
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
.pl-pds,
|
|
527
|
-
.pl-s,
|
|
528
|
-
.pl-s .pl-pse .pl-s1,
|
|
529
|
-
.pl-sr,
|
|
530
|
-
.pl-sr .pl-cce,
|
|
531
|
-
.pl-sr .pl-sra,
|
|
532
|
-
.pl-sr .pl-sre {
|
|
533
|
-
color: #183691;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.pl-v {
|
|
537
|
-
color: #ed6a43;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.pl-id {
|
|
541
|
-
color: #b52a1d;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.pl-ii {
|
|
545
|
-
background-color: #b52a1d;
|
|
546
|
-
color: #f8f8f8;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.pl-sr .pl-cce {
|
|
550
|
-
color: #63a35c;
|
|
551
|
-
font-weight: bold;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.pl-ml {
|
|
555
|
-
color: #693a17;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.pl-mh,
|
|
559
|
-
.pl-mh .pl-en,
|
|
560
|
-
.pl-ms {
|
|
561
|
-
color: #1d3e81;
|
|
562
|
-
font-weight: bold;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
.pl-mq {
|
|
566
|
-
color: #008080;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
.pl-mi {
|
|
570
|
-
color: #333333;
|
|
571
|
-
font-style: italic;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
.pl-mb {
|
|
575
|
-
color: #333333;
|
|
576
|
-
font-weight: bold;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
.pl-md {
|
|
580
|
-
background-color: #ffecec;
|
|
581
|
-
color: #bd2c00;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.pl-mi1 {
|
|
585
|
-
background-color: #eaffea;
|
|
586
|
-
color: #55a532;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
.pl-mdr {
|
|
590
|
-
color: #795da3;
|
|
591
|
-
font-weight: bold;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
.pl-mo {
|
|
595
|
-
color: #1d3e81;
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
kbd {
|
|
599
|
-
display: inline-block;
|
|
600
|
-
padding: 3px 5px;
|
|
601
|
-
font: 11px 'Consolas', 'Liberation Mono', 'Menlo', 'Courier', monospace;
|
|
602
|
-
line-height: 10px;
|
|
603
|
-
vertical-align: middle;
|
|
604
|
-
background-color: #fcfcfc;
|
|
605
|
-
border: solid 1px #cccccc;
|
|
606
|
-
border-bottom-color: #bbbbbb;
|
|
607
|
-
border-radius: 3px;
|
|
608
|
-
box-shadow: inset 0 -1px 0 #bbbbbb;
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
.full-commit .btn-outline:not(:disabled):hover {
|
|
612
|
-
color: #4078c0;
|
|
613
|
-
border: 1px solid #4078c0;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
:checked + .radio-label {
|
|
617
|
-
position: relative;
|
|
618
|
-
z-index: 1;
|
|
619
|
-
border-color: #4078c0;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.octicon {
|
|
623
|
-
display: inline-block;
|
|
624
|
-
vertical-align: text-top;
|
|
625
|
-
fill: currentColor;
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
.task-list-item {
|
|
629
|
-
list-style-type: none;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
.task-list-item + .task-list-item {
|
|
633
|
-
margin-top: 3px;
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
.task-list-item input {
|
|
637
|
-
margin: 0 0.2em 0.25em -1.6em;
|
|
638
|
-
vertical-align: middle;
|
|
639
|
-
}
|
|
640
|
-
}
|
|
641
|
-
}
|