marked 15.0.11 → 16.0.0

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/lib/marked.esm.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * marked v15.0.11 - a markdown parser
2
+ * marked v16.0.0 - a markdown parser
3
3
  * Copyright (c) 2011-2025, Christopher Jeffrey. (MIT Licensed)
4
4
  * https://github.com/markedjs/marked
5
5
  */
@@ -9,2573 +9,60 @@
9
9
  * The code in this file is generated from files in ./src/
10
10
  */
11
11
 
12
- /**
13
- * Gets the original marked default options.
14
- */
15
- function _getDefaults() {
16
- return {
17
- async: false,
18
- breaks: false,
19
- extensions: null,
20
- gfm: true,
21
- hooks: null,
22
- pedantic: false,
23
- renderer: null,
24
- silent: false,
25
- tokenizer: null,
26
- walkTokens: null,
27
- };
28
- }
29
- let _defaults = _getDefaults();
30
- function changeDefaults(newDefaults) {
31
- _defaults = newDefaults;
32
- }
33
-
34
- const noopTest = { exec: () => null };
35
- function edit(regex, opt = '') {
36
- let source = typeof regex === 'string' ? regex : regex.source;
37
- const obj = {
38
- replace: (name, val) => {
39
- let valSource = typeof val === 'string' ? val : val.source;
40
- valSource = valSource.replace(other.caret, '$1');
41
- source = source.replace(name, valSource);
42
- return obj;
43
- },
44
- getRegex: () => {
45
- return new RegExp(source, opt);
46
- },
47
- };
48
- return obj;
49
- }
50
- const other = {
51
- codeRemoveIndent: /^(?: {1,4}| {0,3}\t)/gm,
52
- outputLinkReplace: /\\([\[\]])/g,
53
- indentCodeCompensation: /^(\s+)(?:```)/,
54
- beginningSpace: /^\s+/,
55
- endingHash: /#$/,
56
- startingSpaceChar: /^ /,
57
- endingSpaceChar: / $/,
58
- nonSpaceChar: /[^ ]/,
59
- newLineCharGlobal: /\n/g,
60
- tabCharGlobal: /\t/g,
61
- multipleSpaceGlobal: /\s+/g,
62
- blankLine: /^[ \t]*$/,
63
- doubleBlankLine: /\n[ \t]*\n[ \t]*$/,
64
- blockquoteStart: /^ {0,3}>/,
65
- blockquoteSetextReplace: /\n {0,3}((?:=+|-+) *)(?=\n|$)/g,
66
- blockquoteSetextReplace2: /^ {0,3}>[ \t]?/gm,
67
- listReplaceTabs: /^\t+/,
68
- listReplaceNesting: /^ {1,4}(?=( {4})*[^ ])/g,
69
- listIsTask: /^\[[ xX]\] /,
70
- listReplaceTask: /^\[[ xX]\] +/,
71
- anyLine: /\n.*\n/,
72
- hrefBrackets: /^<(.*)>$/,
73
- tableDelimiter: /[:|]/,
74
- tableAlignChars: /^\||\| *$/g,
75
- tableRowBlankLine: /\n[ \t]*$/,
76
- tableAlignRight: /^ *-+: *$/,
77
- tableAlignCenter: /^ *:-+: *$/,
78
- tableAlignLeft: /^ *:-+ *$/,
79
- startATag: /^<a /i,
80
- endATag: /^<\/a>/i,
81
- startPreScriptTag: /^<(pre|code|kbd|script)(\s|>)/i,
82
- endPreScriptTag: /^<\/(pre|code|kbd|script)(\s|>)/i,
83
- startAngleBracket: /^</,
84
- endAngleBracket: />$/,
85
- pedanticHrefTitle: /^([^'"]*[^\s])\s+(['"])(.*)\2/,
86
- unicodeAlphaNumeric: /[\p{L}\p{N}]/u,
87
- escapeTest: /[&<>"']/,
88
- escapeReplace: /[&<>"']/g,
89
- escapeTestNoEncode: /[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,
90
- escapeReplaceNoEncode: /[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,
91
- unescapeTest: /&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,
92
- caret: /(^|[^\[])\^/g,
93
- percentDecode: /%25/g,
94
- findPipe: /\|/g,
95
- splitPipe: / \|/,
96
- slashPipe: /\\\|/g,
97
- carriageReturn: /\r\n|\r/g,
98
- spaceLine: /^ +$/gm,
99
- notSpaceStart: /^\S*/,
100
- endingNewline: /\n$/,
101
- listItemRegex: (bull) => new RegExp(`^( {0,3}${bull})((?:[\t ][^\\n]*)?(?:\\n|$))`),
102
- nextBulletRegex: (indent) => new RegExp(`^ {0,${Math.min(3, indent - 1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ \t][^\\n]*)?(?:\\n|$))`),
103
- hrRegex: (indent) => new RegExp(`^ {0,${Math.min(3, indent - 1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),
104
- fencesBeginRegex: (indent) => new RegExp(`^ {0,${Math.min(3, indent - 1)}}(?:\`\`\`|~~~)`),
105
- headingBeginRegex: (indent) => new RegExp(`^ {0,${Math.min(3, indent - 1)}}#`),
106
- htmlBeginRegex: (indent) => new RegExp(`^ {0,${Math.min(3, indent - 1)}}<(?:[a-z].*>|!--)`, 'i'),
107
- };
108
- /**
109
- * Block-Level Grammar
110
- */
111
- const newline = /^(?:[ \t]*(?:\n|$))+/;
112
- const blockCode = /^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/;
113
- const fences = /^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/;
114
- const hr = /^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/;
115
- const heading = /^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/;
116
- const bullet = /(?:[*+-]|\d{1,9}[.)])/;
117
- const lheadingCore = /^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/;
118
- const lheading = edit(lheadingCore)
119
- .replace(/bull/g, bullet) // lists can interrupt
120
- .replace(/blockCode/g, /(?: {4}| {0,3}\t)/) // indented code blocks can interrupt
121
- .replace(/fences/g, / {0,3}(?:`{3,}|~{3,})/) // fenced code blocks can interrupt
122
- .replace(/blockquote/g, / {0,3}>/) // blockquote can interrupt
123
- .replace(/heading/g, / {0,3}#{1,6}/) // ATX heading can interrupt
124
- .replace(/html/g, / {0,3}<[^\n>]+>\n/) // block html can interrupt
125
- .replace(/\|table/g, '') // table not in commonmark
126
- .getRegex();
127
- const lheadingGfm = edit(lheadingCore)
128
- .replace(/bull/g, bullet) // lists can interrupt
129
- .replace(/blockCode/g, /(?: {4}| {0,3}\t)/) // indented code blocks can interrupt
130
- .replace(/fences/g, / {0,3}(?:`{3,}|~{3,})/) // fenced code blocks can interrupt
131
- .replace(/blockquote/g, / {0,3}>/) // blockquote can interrupt
132
- .replace(/heading/g, / {0,3}#{1,6}/) // ATX heading can interrupt
133
- .replace(/html/g, / {0,3}<[^\n>]+>\n/) // block html can interrupt
134
- .replace(/table/g, / {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/) // table can interrupt
135
- .getRegex();
136
- const _paragraph = /^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/;
137
- const blockText = /^[^\n]+/;
138
- const _blockLabel = /(?!\s*\])(?:\\.|[^\[\]\\])+/;
139
- const def = edit(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/)
140
- .replace('label', _blockLabel)
141
- .replace('title', /(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/)
142
- .getRegex();
143
- const list = edit(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/)
144
- .replace(/bull/g, bullet)
145
- .getRegex();
146
- const _tag = 'address|article|aside|base|basefont|blockquote|body|caption'
147
- + '|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption'
148
- + '|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe'
149
- + '|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option'
150
- + '|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title'
151
- + '|tr|track|ul';
152
- const _comment = /<!--(?:-?>|[\s\S]*?(?:-->|$))/;
153
- const html = edit('^ {0,3}(?:' // optional indentation
154
- + '<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)' // (1)
155
- + '|comment[^\\n]*(\\n+|$)' // (2)
156
- + '|<\\?[\\s\\S]*?(?:\\?>\\n*|$)' // (3)
157
- + '|<![A-Z][\\s\\S]*?(?:>\\n*|$)' // (4)
158
- + '|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)' // (5)
159
- + '|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ \t]*)+\\n|$)' // (6)
160
- + '|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ \t]*)+\\n|$)' // (7) open tag
161
- + '|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ \t]*)+\\n|$)' // (7) closing tag
162
- + ')', 'i')
163
- .replace('comment', _comment)
164
- .replace('tag', _tag)
165
- .replace('attribute', / +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/)
166
- .getRegex();
167
- const paragraph = edit(_paragraph)
168
- .replace('hr', hr)
169
- .replace('heading', ' {0,3}#{1,6}(?:\\s|$)')
170
- .replace('|lheading', '') // setext headings don't interrupt commonmark paragraphs
171
- .replace('|table', '')
172
- .replace('blockquote', ' {0,3}>')
173
- .replace('fences', ' {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n')
174
- .replace('list', ' {0,3}(?:[*+-]|1[.)]) ') // only lists starting from 1 can interrupt
175
- .replace('html', '</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)')
176
- .replace('tag', _tag) // pars can be interrupted by type (6) html blocks
177
- .getRegex();
178
- const blockquote = edit(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/)
179
- .replace('paragraph', paragraph)
180
- .getRegex();
181
- /**
182
- * Normal Block Grammar
183
- */
184
- const blockNormal = {
185
- blockquote,
186
- code: blockCode,
187
- def,
188
- fences,
189
- heading,
190
- hr,
191
- html,
192
- lheading,
193
- list,
194
- newline,
195
- paragraph,
196
- table: noopTest,
197
- text: blockText,
198
- };
199
- /**
200
- * GFM Block Grammar
201
- */
202
- const gfmTable = edit('^ *([^\\n ].*)\\n' // Header
203
- + ' {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)' // Align
204
- + '(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)') // Cells
205
- .replace('hr', hr)
206
- .replace('heading', ' {0,3}#{1,6}(?:\\s|$)')
207
- .replace('blockquote', ' {0,3}>')
208
- .replace('code', '(?: {4}| {0,3}\t)[^\\n]')
209
- .replace('fences', ' {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n')
210
- .replace('list', ' {0,3}(?:[*+-]|1[.)]) ') // only lists starting from 1 can interrupt
211
- .replace('html', '</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)')
212
- .replace('tag', _tag) // tables can be interrupted by type (6) html blocks
213
- .getRegex();
214
- const blockGfm = {
215
- ...blockNormal,
216
- lheading: lheadingGfm,
217
- table: gfmTable,
218
- paragraph: edit(_paragraph)
219
- .replace('hr', hr)
220
- .replace('heading', ' {0,3}#{1,6}(?:\\s|$)')
221
- .replace('|lheading', '') // setext headings don't interrupt commonmark paragraphs
222
- .replace('table', gfmTable) // interrupt paragraphs with table
223
- .replace('blockquote', ' {0,3}>')
224
- .replace('fences', ' {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n')
225
- .replace('list', ' {0,3}(?:[*+-]|1[.)]) ') // only lists starting from 1 can interrupt
226
- .replace('html', '</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)')
227
- .replace('tag', _tag) // pars can be interrupted by type (6) html blocks
228
- .getRegex(),
229
- };
230
- /**
231
- * Pedantic grammar (original John Gruber's loose markdown specification)
232
- */
233
- const blockPedantic = {
234
- ...blockNormal,
235
- html: edit('^ *(?:comment *(?:\\n|\\s*$)'
236
- + '|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)' // closed tag
237
- + '|<tag(?:"[^"]*"|\'[^\']*\'|\\s[^\'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))')
238
- .replace('comment', _comment)
239
- .replace(/tag/g, '(?!(?:'
240
- + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub'
241
- + '|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)'
242
- + '\\b)\\w+(?!:|[^\\w\\s@]*@)\\b')
243
- .getRegex(),
244
- def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,
245
- heading: /^(#{1,6})(.*)(?:\n+|$)/,
246
- fences: noopTest, // fences not supported
247
- lheading: /^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,
248
- paragraph: edit(_paragraph)
249
- .replace('hr', hr)
250
- .replace('heading', ' *#{1,6} *[^\n]')
251
- .replace('lheading', lheading)
252
- .replace('|table', '')
253
- .replace('blockquote', ' {0,3}>')
254
- .replace('|fences', '')
255
- .replace('|list', '')
256
- .replace('|html', '')
257
- .replace('|tag', '')
258
- .getRegex(),
259
- };
260
- /**
261
- * Inline-Level Grammar
262
- */
263
- const escape$1 = /^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/;
264
- const inlineCode = /^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/;
265
- const br = /^( {2,}|\\)\n(?!\s*$)/;
266
- const inlineText = /^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/;
267
- // list of unicode punctuation marks, plus any missing characters from CommonMark spec
268
- const _punctuation = /[\p{P}\p{S}]/u;
269
- const _punctuationOrSpace = /[\s\p{P}\p{S}]/u;
270
- const _notPunctuationOrSpace = /[^\s\p{P}\p{S}]/u;
271
- const punctuation = edit(/^((?![*_])punctSpace)/, 'u')
272
- .replace(/punctSpace/g, _punctuationOrSpace).getRegex();
273
- // GFM allows ~ inside strong and em for strikethrough
274
- const _punctuationGfmStrongEm = /(?!~)[\p{P}\p{S}]/u;
275
- const _punctuationOrSpaceGfmStrongEm = /(?!~)[\s\p{P}\p{S}]/u;
276
- const _notPunctuationOrSpaceGfmStrongEm = /(?:[^\s\p{P}\p{S}]|~)/u;
277
- // sequences em should skip over [title](link), `code`, <html>
278
- const blockSkip = /\[[^[\]]*?\]\((?:\\.|[^\\\(\)]|\((?:\\.|[^\\\(\)])*\))*\)|`[^`]*?`|<[^<>]*?>/g;
279
- const emStrongLDelimCore = /^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/;
280
- const emStrongLDelim = edit(emStrongLDelimCore, 'u')
281
- .replace(/punct/g, _punctuation)
282
- .getRegex();
283
- const emStrongLDelimGfm = edit(emStrongLDelimCore, 'u')
284
- .replace(/punct/g, _punctuationGfmStrongEm)
285
- .getRegex();
286
- const emStrongRDelimAstCore = '^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)' // Skip orphan inside strong
287
- + '|[^*]+(?=[^*])' // Consume to delim
288
- + '|(?!\\*)punct(\\*+)(?=[\\s]|$)' // (1) #*** can only be a Right Delimiter
289
- + '|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)' // (2) a***#, a*** can only be a Right Delimiter
290
- + '|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)' // (3) #***a, ***a can only be Left Delimiter
291
- + '|[\\s](\\*+)(?!\\*)(?=punct)' // (4) ***# can only be Left Delimiter
292
- + '|(?!\\*)punct(\\*+)(?!\\*)(?=punct)' // (5) #***# can be either Left or Right Delimiter
293
- + '|notPunctSpace(\\*+)(?=notPunctSpace)'; // (6) a***a can be either Left or Right Delimiter
294
- const emStrongRDelimAst = edit(emStrongRDelimAstCore, 'gu')
295
- .replace(/notPunctSpace/g, _notPunctuationOrSpace)
296
- .replace(/punctSpace/g, _punctuationOrSpace)
297
- .replace(/punct/g, _punctuation)
298
- .getRegex();
299
- const emStrongRDelimAstGfm = edit(emStrongRDelimAstCore, 'gu')
300
- .replace(/notPunctSpace/g, _notPunctuationOrSpaceGfmStrongEm)
301
- .replace(/punctSpace/g, _punctuationOrSpaceGfmStrongEm)
302
- .replace(/punct/g, _punctuationGfmStrongEm)
303
- .getRegex();
304
- // (6) Not allowed for _
305
- const emStrongRDelimUnd = edit('^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)' // Skip orphan inside strong
306
- + '|[^_]+(?=[^_])' // Consume to delim
307
- + '|(?!_)punct(_+)(?=[\\s]|$)' // (1) #___ can only be a Right Delimiter
308
- + '|notPunctSpace(_+)(?!_)(?=punctSpace|$)' // (2) a___#, a___ can only be a Right Delimiter
309
- + '|(?!_)punctSpace(_+)(?=notPunctSpace)' // (3) #___a, ___a can only be Left Delimiter
310
- + '|[\\s](_+)(?!_)(?=punct)' // (4) ___# can only be Left Delimiter
311
- + '|(?!_)punct(_+)(?!_)(?=punct)', 'gu') // (5) #___# can be either Left or Right Delimiter
312
- .replace(/notPunctSpace/g, _notPunctuationOrSpace)
313
- .replace(/punctSpace/g, _punctuationOrSpace)
314
- .replace(/punct/g, _punctuation)
315
- .getRegex();
316
- const anyPunctuation = edit(/\\(punct)/, 'gu')
317
- .replace(/punct/g, _punctuation)
318
- .getRegex();
319
- const autolink = edit(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/)
320
- .replace('scheme', /[a-zA-Z][a-zA-Z0-9+.-]{1,31}/)
321
- .replace('email', /[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/)
322
- .getRegex();
323
- const _inlineComment = edit(_comment).replace('(?:-->|$)', '-->').getRegex();
324
- const tag = edit('^comment'
325
- + '|^</[a-zA-Z][\\w:-]*\\s*>' // self-closing tag
326
- + '|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>' // open tag
327
- + '|^<\\?[\\s\\S]*?\\?>' // processing instruction, e.g. <?php ?>
328
- + '|^<![a-zA-Z]+\\s[\\s\\S]*?>' // declaration, e.g. <!DOCTYPE html>
329
- + '|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>') // CDATA section
330
- .replace('comment', _inlineComment)
331
- .replace('attribute', /\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/)
332
- .getRegex();
333
- const _inlineLabel = /(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/;
334
- const link = edit(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/)
335
- .replace('label', _inlineLabel)
336
- .replace('href', /<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/)
337
- .replace('title', /"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/)
338
- .getRegex();
339
- const reflink = edit(/^!?\[(label)\]\[(ref)\]/)
340
- .replace('label', _inlineLabel)
341
- .replace('ref', _blockLabel)
342
- .getRegex();
343
- const nolink = edit(/^!?\[(ref)\](?:\[\])?/)
344
- .replace('ref', _blockLabel)
345
- .getRegex();
346
- const reflinkSearch = edit('reflink|nolink(?!\\()', 'g')
347
- .replace('reflink', reflink)
348
- .replace('nolink', nolink)
349
- .getRegex();
350
- /**
351
- * Normal Inline Grammar
352
- */
353
- const inlineNormal = {
354
- _backpedal: noopTest, // only used for GFM url
355
- anyPunctuation,
356
- autolink,
357
- blockSkip,
358
- br,
359
- code: inlineCode,
360
- del: noopTest,
361
- emStrongLDelim,
362
- emStrongRDelimAst,
363
- emStrongRDelimUnd,
364
- escape: escape$1,
365
- link,
366
- nolink,
367
- punctuation,
368
- reflink,
369
- reflinkSearch,
370
- tag,
371
- text: inlineText,
372
- url: noopTest,
373
- };
374
- /**
375
- * Pedantic Inline Grammar
376
- */
377
- const inlinePedantic = {
378
- ...inlineNormal,
379
- link: edit(/^!?\[(label)\]\((.*?)\)/)
380
- .replace('label', _inlineLabel)
381
- .getRegex(),
382
- reflink: edit(/^!?\[(label)\]\s*\[([^\]]*)\]/)
383
- .replace('label', _inlineLabel)
384
- .getRegex(),
385
- };
386
- /**
387
- * GFM Inline Grammar
388
- */
389
- const inlineGfm = {
390
- ...inlineNormal,
391
- emStrongRDelimAst: emStrongRDelimAstGfm,
392
- emStrongLDelim: emStrongLDelimGfm,
393
- url: edit(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/, 'i')
394
- .replace('email', /[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/)
395
- .getRegex(),
396
- _backpedal: /(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,
397
- del: /^(~~?)(?=[^\s~])((?:\\.|[^\\])*?(?:\\.|[^\s~\\]))\1(?=[^~]|$)/,
398
- text: /^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/,
399
- };
400
- /**
401
- * GFM + Line Breaks Inline Grammar
402
- */
403
- const inlineBreaks = {
404
- ...inlineGfm,
405
- br: edit(br).replace('{2,}', '*').getRegex(),
406
- text: edit(inlineGfm.text)
407
- .replace('\\b_', '\\b_| {2,}\\n')
408
- .replace(/\{2,\}/g, '*')
409
- .getRegex(),
410
- };
411
- /**
412
- * exports
413
- */
414
- const block = {
415
- normal: blockNormal,
416
- gfm: blockGfm,
417
- pedantic: blockPedantic,
418
- };
419
- const inline = {
420
- normal: inlineNormal,
421
- gfm: inlineGfm,
422
- breaks: inlineBreaks,
423
- pedantic: inlinePedantic,
424
- };
425
-
426
- /**
427
- * Helpers
428
- */
429
- const escapeReplacements = {
430
- '&': '&amp;',
431
- '<': '&lt;',
432
- '>': '&gt;',
433
- '"': '&quot;',
434
- "'": '&#39;',
435
- };
436
- const getEscapeReplacement = (ch) => escapeReplacements[ch];
437
- function escape(html, encode) {
438
- if (encode) {
439
- if (other.escapeTest.test(html)) {
440
- return html.replace(other.escapeReplace, getEscapeReplacement);
441
- }
442
- }
443
- else {
444
- if (other.escapeTestNoEncode.test(html)) {
445
- return html.replace(other.escapeReplaceNoEncode, getEscapeReplacement);
446
- }
447
- }
448
- return html;
449
- }
450
- function cleanUrl(href) {
451
- try {
452
- href = encodeURI(href).replace(other.percentDecode, '%');
453
- }
454
- catch {
455
- return null;
456
- }
457
- return href;
458
- }
459
- function splitCells(tableRow, count) {
460
- // ensure that every cell-delimiting pipe has a space
461
- // before it to distinguish it from an escaped pipe
462
- const row = tableRow.replace(other.findPipe, (match, offset, str) => {
463
- let escaped = false;
464
- let curr = offset;
465
- while (--curr >= 0 && str[curr] === '\\')
466
- escaped = !escaped;
467
- if (escaped) {
468
- // odd number of slashes means | is escaped
469
- // so we leave it alone
470
- return '|';
471
- }
472
- else {
473
- // add space before unescaped |
474
- return ' |';
475
- }
476
- }), cells = row.split(other.splitPipe);
477
- let i = 0;
478
- // First/last cell in a row cannot be empty if it has no leading/trailing pipe
479
- if (!cells[0].trim()) {
480
- cells.shift();
481
- }
482
- if (cells.length > 0 && !cells.at(-1)?.trim()) {
483
- cells.pop();
484
- }
485
- if (count) {
486
- if (cells.length > count) {
487
- cells.splice(count);
488
- }
489
- else {
490
- while (cells.length < count)
491
- cells.push('');
492
- }
493
- }
494
- for (; i < cells.length; i++) {
495
- // leading or trailing whitespace is ignored per the gfm spec
496
- cells[i] = cells[i].trim().replace(other.slashPipe, '|');
497
- }
498
- return cells;
499
- }
500
- /**
501
- * Remove trailing 'c's. Equivalent to str.replace(/c*$/, '').
502
- * /c*$/ is vulnerable to REDOS.
503
- *
504
- * @param str
505
- * @param c
506
- * @param invert Remove suffix of non-c chars instead. Default falsey.
507
- */
508
- function rtrim(str, c, invert) {
509
- const l = str.length;
510
- if (l === 0) {
511
- return '';
512
- }
513
- // Length of suffix matching the invert condition.
514
- let suffLen = 0;
515
- // Step left until we fail to match the invert condition.
516
- while (suffLen < l) {
517
- const currChar = str.charAt(l - suffLen - 1);
518
- if (currChar === c && true) {
519
- suffLen++;
520
- }
521
- else {
522
- break;
523
- }
524
- }
525
- return str.slice(0, l - suffLen);
526
- }
527
- function findClosingBracket(str, b) {
528
- if (str.indexOf(b[1]) === -1) {
529
- return -1;
530
- }
531
- let level = 0;
532
- for (let i = 0; i < str.length; i++) {
533
- if (str[i] === '\\') {
534
- i++;
535
- }
536
- else if (str[i] === b[0]) {
537
- level++;
538
- }
539
- else if (str[i] === b[1]) {
540
- level--;
541
- if (level < 0) {
542
- return i;
543
- }
544
- }
545
- }
546
- if (level > 0) {
547
- return -2;
548
- }
549
- return -1;
550
- }
551
-
552
- function outputLink(cap, link, raw, lexer, rules) {
553
- const href = link.href;
554
- const title = link.title || null;
555
- const text = cap[1].replace(rules.other.outputLinkReplace, '$1');
556
- lexer.state.inLink = true;
557
- const token = {
558
- type: cap[0].charAt(0) === '!' ? 'image' : 'link',
559
- raw,
560
- href,
561
- title,
562
- text,
563
- tokens: lexer.inlineTokens(text),
564
- };
565
- lexer.state.inLink = false;
566
- return token;
567
- }
568
- function indentCodeCompensation(raw, text, rules) {
569
- const matchIndentToCode = raw.match(rules.other.indentCodeCompensation);
570
- if (matchIndentToCode === null) {
571
- return text;
572
- }
573
- const indentToCode = matchIndentToCode[1];
574
- return text
575
- .split('\n')
576
- .map(node => {
577
- const matchIndentInNode = node.match(rules.other.beginningSpace);
578
- if (matchIndentInNode === null) {
579
- return node;
580
- }
581
- const [indentInNode] = matchIndentInNode;
582
- if (indentInNode.length >= indentToCode.length) {
583
- return node.slice(indentToCode.length);
584
- }
585
- return node;
586
- })
587
- .join('\n');
588
- }
589
- /**
590
- * Tokenizer
591
- */
592
- class _Tokenizer {
593
- options;
594
- rules; // set by the lexer
595
- lexer; // set by the lexer
596
- constructor(options) {
597
- this.options = options || _defaults;
598
- }
599
- space(src) {
600
- const cap = this.rules.block.newline.exec(src);
601
- if (cap && cap[0].length > 0) {
602
- return {
603
- type: 'space',
604
- raw: cap[0],
605
- };
606
- }
607
- }
608
- code(src) {
609
- const cap = this.rules.block.code.exec(src);
610
- if (cap) {
611
- const text = cap[0].replace(this.rules.other.codeRemoveIndent, '');
612
- return {
613
- type: 'code',
614
- raw: cap[0],
615
- codeBlockStyle: 'indented',
616
- text: !this.options.pedantic
617
- ? rtrim(text, '\n')
618
- : text,
619
- };
620
- }
621
- }
622
- fences(src) {
623
- const cap = this.rules.block.fences.exec(src);
624
- if (cap) {
625
- const raw = cap[0];
626
- const text = indentCodeCompensation(raw, cap[3] || '', this.rules);
627
- return {
628
- type: 'code',
629
- raw,
630
- lang: cap[2] ? cap[2].trim().replace(this.rules.inline.anyPunctuation, '$1') : cap[2],
631
- text,
632
- };
633
- }
634
- }
635
- heading(src) {
636
- const cap = this.rules.block.heading.exec(src);
637
- if (cap) {
638
- let text = cap[2].trim();
639
- // remove trailing #s
640
- if (this.rules.other.endingHash.test(text)) {
641
- const trimmed = rtrim(text, '#');
642
- if (this.options.pedantic) {
643
- text = trimmed.trim();
644
- }
645
- else if (!trimmed || this.rules.other.endingSpaceChar.test(trimmed)) {
646
- // CommonMark requires space before trailing #s
647
- text = trimmed.trim();
648
- }
649
- }
650
- return {
651
- type: 'heading',
652
- raw: cap[0],
653
- depth: cap[1].length,
654
- text,
655
- tokens: this.lexer.inline(text),
656
- };
657
- }
658
- }
659
- hr(src) {
660
- const cap = this.rules.block.hr.exec(src);
661
- if (cap) {
662
- return {
663
- type: 'hr',
664
- raw: rtrim(cap[0], '\n'),
665
- };
666
- }
667
- }
668
- blockquote(src) {
669
- const cap = this.rules.block.blockquote.exec(src);
670
- if (cap) {
671
- let lines = rtrim(cap[0], '\n').split('\n');
672
- let raw = '';
673
- let text = '';
674
- const tokens = [];
675
- while (lines.length > 0) {
676
- let inBlockquote = false;
677
- const currentLines = [];
678
- let i;
679
- for (i = 0; i < lines.length; i++) {
680
- // get lines up to a continuation
681
- if (this.rules.other.blockquoteStart.test(lines[i])) {
682
- currentLines.push(lines[i]);
683
- inBlockquote = true;
684
- }
685
- else if (!inBlockquote) {
686
- currentLines.push(lines[i]);
687
- }
688
- else {
689
- break;
690
- }
691
- }
692
- lines = lines.slice(i);
693
- const currentRaw = currentLines.join('\n');
694
- const currentText = currentRaw
695
- // precede setext continuation with 4 spaces so it isn't a setext
696
- .replace(this.rules.other.blockquoteSetextReplace, '\n $1')
697
- .replace(this.rules.other.blockquoteSetextReplace2, '');
698
- raw = raw ? `${raw}\n${currentRaw}` : currentRaw;
699
- text = text ? `${text}\n${currentText}` : currentText;
700
- // parse blockquote lines as top level tokens
701
- // merge paragraphs if this is a continuation
702
- const top = this.lexer.state.top;
703
- this.lexer.state.top = true;
704
- this.lexer.blockTokens(currentText, tokens, true);
705
- this.lexer.state.top = top;
706
- // if there is no continuation then we are done
707
- if (lines.length === 0) {
708
- break;
709
- }
710
- const lastToken = tokens.at(-1);
711
- if (lastToken?.type === 'code') {
712
- // blockquote continuation cannot be preceded by a code block
713
- break;
714
- }
715
- else if (lastToken?.type === 'blockquote') {
716
- // include continuation in nested blockquote
717
- const oldToken = lastToken;
718
- const newText = oldToken.raw + '\n' + lines.join('\n');
719
- const newToken = this.blockquote(newText);
720
- tokens[tokens.length - 1] = newToken;
721
- raw = raw.substring(0, raw.length - oldToken.raw.length) + newToken.raw;
722
- text = text.substring(0, text.length - oldToken.text.length) + newToken.text;
723
- break;
724
- }
725
- else if (lastToken?.type === 'list') {
726
- // include continuation in nested list
727
- const oldToken = lastToken;
728
- const newText = oldToken.raw + '\n' + lines.join('\n');
729
- const newToken = this.list(newText);
730
- tokens[tokens.length - 1] = newToken;
731
- raw = raw.substring(0, raw.length - lastToken.raw.length) + newToken.raw;
732
- text = text.substring(0, text.length - oldToken.raw.length) + newToken.raw;
733
- lines = newText.substring(tokens.at(-1).raw.length).split('\n');
734
- continue;
735
- }
736
- }
737
- return {
738
- type: 'blockquote',
739
- raw,
740
- tokens,
741
- text,
742
- };
743
- }
744
- }
745
- list(src) {
746
- let cap = this.rules.block.list.exec(src);
747
- if (cap) {
748
- let bull = cap[1].trim();
749
- const isordered = bull.length > 1;
750
- const list = {
751
- type: 'list',
752
- raw: '',
753
- ordered: isordered,
754
- start: isordered ? +bull.slice(0, -1) : '',
755
- loose: false,
756
- items: [],
757
- };
758
- bull = isordered ? `\\d{1,9}\\${bull.slice(-1)}` : `\\${bull}`;
759
- if (this.options.pedantic) {
760
- bull = isordered ? bull : '[*+-]';
761
- }
762
- // Get next list item
763
- const itemRegex = this.rules.other.listItemRegex(bull);
764
- let endsWithBlankLine = false;
765
- // Check if current bullet point can start a new List Item
766
- while (src) {
767
- let endEarly = false;
768
- let raw = '';
769
- let itemContents = '';
770
- if (!(cap = itemRegex.exec(src))) {
771
- break;
772
- }
773
- if (this.rules.block.hr.test(src)) { // End list if bullet was actually HR (possibly move into itemRegex?)
774
- break;
775
- }
776
- raw = cap[0];
777
- src = src.substring(raw.length);
778
- let line = cap[2].split('\n', 1)[0].replace(this.rules.other.listReplaceTabs, (t) => ' '.repeat(3 * t.length));
779
- let nextLine = src.split('\n', 1)[0];
780
- let blankLine = !line.trim();
781
- let indent = 0;
782
- if (this.options.pedantic) {
783
- indent = 2;
784
- itemContents = line.trimStart();
785
- }
786
- else if (blankLine) {
787
- indent = cap[1].length + 1;
788
- }
789
- else {
790
- indent = cap[2].search(this.rules.other.nonSpaceChar); // Find first non-space char
791
- indent = indent > 4 ? 1 : indent; // Treat indented code blocks (> 4 spaces) as having only 1 indent
792
- itemContents = line.slice(indent);
793
- indent += cap[1].length;
794
- }
795
- if (blankLine && this.rules.other.blankLine.test(nextLine)) { // Items begin with at most one blank line
796
- raw += nextLine + '\n';
797
- src = src.substring(nextLine.length + 1);
798
- endEarly = true;
799
- }
800
- if (!endEarly) {
801
- const nextBulletRegex = this.rules.other.nextBulletRegex(indent);
802
- const hrRegex = this.rules.other.hrRegex(indent);
803
- const fencesBeginRegex = this.rules.other.fencesBeginRegex(indent);
804
- const headingBeginRegex = this.rules.other.headingBeginRegex(indent);
805
- const htmlBeginRegex = this.rules.other.htmlBeginRegex(indent);
806
- // Check if following lines should be included in List Item
807
- while (src) {
808
- const rawLine = src.split('\n', 1)[0];
809
- let nextLineWithoutTabs;
810
- nextLine = rawLine;
811
- // Re-align to follow commonmark nesting rules
812
- if (this.options.pedantic) {
813
- nextLine = nextLine.replace(this.rules.other.listReplaceNesting, ' ');
814
- nextLineWithoutTabs = nextLine;
815
- }
816
- else {
817
- nextLineWithoutTabs = nextLine.replace(this.rules.other.tabCharGlobal, ' ');
818
- }
819
- // End list item if found code fences
820
- if (fencesBeginRegex.test(nextLine)) {
821
- break;
822
- }
823
- // End list item if found start of new heading
824
- if (headingBeginRegex.test(nextLine)) {
825
- break;
826
- }
827
- // End list item if found start of html block
828
- if (htmlBeginRegex.test(nextLine)) {
829
- break;
830
- }
831
- // End list item if found start of new bullet
832
- if (nextBulletRegex.test(nextLine)) {
833
- break;
834
- }
835
- // Horizontal rule found
836
- if (hrRegex.test(nextLine)) {
837
- break;
838
- }
839
- if (nextLineWithoutTabs.search(this.rules.other.nonSpaceChar) >= indent || !nextLine.trim()) { // Dedent if possible
840
- itemContents += '\n' + nextLineWithoutTabs.slice(indent);
841
- }
842
- else {
843
- // not enough indentation
844
- if (blankLine) {
845
- break;
846
- }
847
- // paragraph continuation unless last line was a different block level element
848
- if (line.replace(this.rules.other.tabCharGlobal, ' ').search(this.rules.other.nonSpaceChar) >= 4) { // indented code block
849
- break;
850
- }
851
- if (fencesBeginRegex.test(line)) {
852
- break;
853
- }
854
- if (headingBeginRegex.test(line)) {
855
- break;
856
- }
857
- if (hrRegex.test(line)) {
858
- break;
859
- }
860
- itemContents += '\n' + nextLine;
861
- }
862
- if (!blankLine && !nextLine.trim()) { // Check if current line is blank
863
- blankLine = true;
864
- }
865
- raw += rawLine + '\n';
866
- src = src.substring(rawLine.length + 1);
867
- line = nextLineWithoutTabs.slice(indent);
868
- }
869
- }
870
- if (!list.loose) {
871
- // If the previous item ended with a blank line, the list is loose
872
- if (endsWithBlankLine) {
873
- list.loose = true;
874
- }
875
- else if (this.rules.other.doubleBlankLine.test(raw)) {
876
- endsWithBlankLine = true;
877
- }
878
- }
879
- let istask = null;
880
- let ischecked;
881
- // Check for task list items
882
- if (this.options.gfm) {
883
- istask = this.rules.other.listIsTask.exec(itemContents);
884
- if (istask) {
885
- ischecked = istask[0] !== '[ ] ';
886
- itemContents = itemContents.replace(this.rules.other.listReplaceTask, '');
887
- }
888
- }
889
- list.items.push({
890
- type: 'list_item',
891
- raw,
892
- task: !!istask,
893
- checked: ischecked,
894
- loose: false,
895
- text: itemContents,
896
- tokens: [],
897
- });
898
- list.raw += raw;
899
- }
900
- // Do not consume newlines at end of final item. Alternatively, make itemRegex *start* with any newlines to simplify/speed up endsWithBlankLine logic
901
- const lastItem = list.items.at(-1);
902
- if (lastItem) {
903
- lastItem.raw = lastItem.raw.trimEnd();
904
- lastItem.text = lastItem.text.trimEnd();
905
- }
906
- else {
907
- // not a list since there were no items
908
- return;
909
- }
910
- list.raw = list.raw.trimEnd();
911
- // Item child tokens handled here at end because we needed to have the final item to trim it first
912
- for (let i = 0; i < list.items.length; i++) {
913
- this.lexer.state.top = false;
914
- list.items[i].tokens = this.lexer.blockTokens(list.items[i].text, []);
915
- if (!list.loose) {
916
- // Check if list should be loose
917
- const spacers = list.items[i].tokens.filter(t => t.type === 'space');
918
- const hasMultipleLineBreaks = spacers.length > 0 && spacers.some(t => this.rules.other.anyLine.test(t.raw));
919
- list.loose = hasMultipleLineBreaks;
920
- }
921
- }
922
- // Set all items to loose if list is loose
923
- if (list.loose) {
924
- for (let i = 0; i < list.items.length; i++) {
925
- list.items[i].loose = true;
926
- }
927
- }
928
- return list;
929
- }
930
- }
931
- html(src) {
932
- const cap = this.rules.block.html.exec(src);
933
- if (cap) {
934
- const token = {
935
- type: 'html',
936
- block: true,
937
- raw: cap[0],
938
- pre: cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style',
939
- text: cap[0],
940
- };
941
- return token;
942
- }
943
- }
944
- def(src) {
945
- const cap = this.rules.block.def.exec(src);
946
- if (cap) {
947
- const tag = cap[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal, ' ');
948
- const href = cap[2] ? cap[2].replace(this.rules.other.hrefBrackets, '$1').replace(this.rules.inline.anyPunctuation, '$1') : '';
949
- const title = cap[3] ? cap[3].substring(1, cap[3].length - 1).replace(this.rules.inline.anyPunctuation, '$1') : cap[3];
950
- return {
951
- type: 'def',
952
- tag,
953
- raw: cap[0],
954
- href,
955
- title,
956
- };
957
- }
958
- }
959
- table(src) {
960
- const cap = this.rules.block.table.exec(src);
961
- if (!cap) {
962
- return;
963
- }
964
- if (!this.rules.other.tableDelimiter.test(cap[2])) {
965
- // delimiter row must have a pipe (|) or colon (:) otherwise it is a setext heading
966
- return;
967
- }
968
- const headers = splitCells(cap[1]);
969
- const aligns = cap[2].replace(this.rules.other.tableAlignChars, '').split('|');
970
- const rows = cap[3]?.trim() ? cap[3].replace(this.rules.other.tableRowBlankLine, '').split('\n') : [];
971
- const item = {
972
- type: 'table',
973
- raw: cap[0],
974
- header: [],
975
- align: [],
976
- rows: [],
977
- };
978
- if (headers.length !== aligns.length) {
979
- // header and align columns must be equal, rows can be different.
980
- return;
981
- }
982
- for (const align of aligns) {
983
- if (this.rules.other.tableAlignRight.test(align)) {
984
- item.align.push('right');
985
- }
986
- else if (this.rules.other.tableAlignCenter.test(align)) {
987
- item.align.push('center');
988
- }
989
- else if (this.rules.other.tableAlignLeft.test(align)) {
990
- item.align.push('left');
991
- }
992
- else {
993
- item.align.push(null);
994
- }
995
- }
996
- for (let i = 0; i < headers.length; i++) {
997
- item.header.push({
998
- text: headers[i],
999
- tokens: this.lexer.inline(headers[i]),
1000
- header: true,
1001
- align: item.align[i],
1002
- });
1003
- }
1004
- for (const row of rows) {
1005
- item.rows.push(splitCells(row, item.header.length).map((cell, i) => {
1006
- return {
1007
- text: cell,
1008
- tokens: this.lexer.inline(cell),
1009
- header: false,
1010
- align: item.align[i],
1011
- };
1012
- }));
1013
- }
1014
- return item;
1015
- }
1016
- lheading(src) {
1017
- const cap = this.rules.block.lheading.exec(src);
1018
- if (cap) {
1019
- return {
1020
- type: 'heading',
1021
- raw: cap[0],
1022
- depth: cap[2].charAt(0) === '=' ? 1 : 2,
1023
- text: cap[1],
1024
- tokens: this.lexer.inline(cap[1]),
1025
- };
1026
- }
1027
- }
1028
- paragraph(src) {
1029
- const cap = this.rules.block.paragraph.exec(src);
1030
- if (cap) {
1031
- const text = cap[1].charAt(cap[1].length - 1) === '\n'
1032
- ? cap[1].slice(0, -1)
1033
- : cap[1];
1034
- return {
1035
- type: 'paragraph',
1036
- raw: cap[0],
1037
- text,
1038
- tokens: this.lexer.inline(text),
1039
- };
1040
- }
1041
- }
1042
- text(src) {
1043
- const cap = this.rules.block.text.exec(src);
1044
- if (cap) {
1045
- return {
1046
- type: 'text',
1047
- raw: cap[0],
1048
- text: cap[0],
1049
- tokens: this.lexer.inline(cap[0]),
1050
- };
1051
- }
1052
- }
1053
- escape(src) {
1054
- const cap = this.rules.inline.escape.exec(src);
1055
- if (cap) {
1056
- return {
1057
- type: 'escape',
1058
- raw: cap[0],
1059
- text: cap[1],
1060
- };
1061
- }
1062
- }
1063
- tag(src) {
1064
- const cap = this.rules.inline.tag.exec(src);
1065
- if (cap) {
1066
- if (!this.lexer.state.inLink && this.rules.other.startATag.test(cap[0])) {
1067
- this.lexer.state.inLink = true;
1068
- }
1069
- else if (this.lexer.state.inLink && this.rules.other.endATag.test(cap[0])) {
1070
- this.lexer.state.inLink = false;
1071
- }
1072
- if (!this.lexer.state.inRawBlock && this.rules.other.startPreScriptTag.test(cap[0])) {
1073
- this.lexer.state.inRawBlock = true;
1074
- }
1075
- else if (this.lexer.state.inRawBlock && this.rules.other.endPreScriptTag.test(cap[0])) {
1076
- this.lexer.state.inRawBlock = false;
1077
- }
1078
- return {
1079
- type: 'html',
1080
- raw: cap[0],
1081
- inLink: this.lexer.state.inLink,
1082
- inRawBlock: this.lexer.state.inRawBlock,
1083
- block: false,
1084
- text: cap[0],
1085
- };
1086
- }
1087
- }
1088
- link(src) {
1089
- const cap = this.rules.inline.link.exec(src);
1090
- if (cap) {
1091
- const trimmedUrl = cap[2].trim();
1092
- if (!this.options.pedantic && this.rules.other.startAngleBracket.test(trimmedUrl)) {
1093
- // commonmark requires matching angle brackets
1094
- if (!(this.rules.other.endAngleBracket.test(trimmedUrl))) {
1095
- return;
1096
- }
1097
- // ending angle bracket cannot be escaped
1098
- const rtrimSlash = rtrim(trimmedUrl.slice(0, -1), '\\');
1099
- if ((trimmedUrl.length - rtrimSlash.length) % 2 === 0) {
1100
- return;
1101
- }
1102
- }
1103
- else {
1104
- // find closing parenthesis
1105
- const lastParenIndex = findClosingBracket(cap[2], '()');
1106
- if (lastParenIndex === -2) {
1107
- // more open parens than closed
1108
- return;
1109
- }
1110
- if (lastParenIndex > -1) {
1111
- const start = cap[0].indexOf('!') === 0 ? 5 : 4;
1112
- const linkLen = start + cap[1].length + lastParenIndex;
1113
- cap[2] = cap[2].substring(0, lastParenIndex);
1114
- cap[0] = cap[0].substring(0, linkLen).trim();
1115
- cap[3] = '';
1116
- }
1117
- }
1118
- let href = cap[2];
1119
- let title = '';
1120
- if (this.options.pedantic) {
1121
- // split pedantic href and title
1122
- const link = this.rules.other.pedanticHrefTitle.exec(href);
1123
- if (link) {
1124
- href = link[1];
1125
- title = link[3];
1126
- }
1127
- }
1128
- else {
1129
- title = cap[3] ? cap[3].slice(1, -1) : '';
1130
- }
1131
- href = href.trim();
1132
- if (this.rules.other.startAngleBracket.test(href)) {
1133
- if (this.options.pedantic && !(this.rules.other.endAngleBracket.test(trimmedUrl))) {
1134
- // pedantic allows starting angle bracket without ending angle bracket
1135
- href = href.slice(1);
1136
- }
1137
- else {
1138
- href = href.slice(1, -1);
1139
- }
1140
- }
1141
- return outputLink(cap, {
1142
- href: href ? href.replace(this.rules.inline.anyPunctuation, '$1') : href,
1143
- title: title ? title.replace(this.rules.inline.anyPunctuation, '$1') : title,
1144
- }, cap[0], this.lexer, this.rules);
1145
- }
1146
- }
1147
- reflink(src, links) {
1148
- let cap;
1149
- if ((cap = this.rules.inline.reflink.exec(src))
1150
- || (cap = this.rules.inline.nolink.exec(src))) {
1151
- const linkString = (cap[2] || cap[1]).replace(this.rules.other.multipleSpaceGlobal, ' ');
1152
- const link = links[linkString.toLowerCase()];
1153
- if (!link) {
1154
- const text = cap[0].charAt(0);
1155
- return {
1156
- type: 'text',
1157
- raw: text,
1158
- text,
1159
- };
1160
- }
1161
- return outputLink(cap, link, cap[0], this.lexer, this.rules);
1162
- }
1163
- }
1164
- emStrong(src, maskedSrc, prevChar = '') {
1165
- let match = this.rules.inline.emStrongLDelim.exec(src);
1166
- if (!match)
1167
- return;
1168
- // _ can't be between two alphanumerics. \p{L}\p{N} includes non-english alphabet/numbers as well
1169
- if (match[3] && prevChar.match(this.rules.other.unicodeAlphaNumeric))
1170
- return;
1171
- const nextChar = match[1] || match[2] || '';
1172
- if (!nextChar || !prevChar || this.rules.inline.punctuation.exec(prevChar)) {
1173
- // unicode Regex counts emoji as 1 char; spread into array for proper count (used multiple times below)
1174
- const lLength = [...match[0]].length - 1;
1175
- let rDelim, rLength, delimTotal = lLength, midDelimTotal = 0;
1176
- const endReg = match[0][0] === '*' ? this.rules.inline.emStrongRDelimAst : this.rules.inline.emStrongRDelimUnd;
1177
- endReg.lastIndex = 0;
1178
- // Clip maskedSrc to same section of string as src (move to lexer?)
1179
- maskedSrc = maskedSrc.slice(-1 * src.length + lLength);
1180
- while ((match = endReg.exec(maskedSrc)) != null) {
1181
- rDelim = match[1] || match[2] || match[3] || match[4] || match[5] || match[6];
1182
- if (!rDelim)
1183
- continue; // skip single * in __abc*abc__
1184
- rLength = [...rDelim].length;
1185
- if (match[3] || match[4]) { // found another Left Delim
1186
- delimTotal += rLength;
1187
- continue;
1188
- }
1189
- else if (match[5] || match[6]) { // either Left or Right Delim
1190
- if (lLength % 3 && !((lLength + rLength) % 3)) {
1191
- midDelimTotal += rLength;
1192
- continue; // CommonMark Emphasis Rules 9-10
1193
- }
1194
- }
1195
- delimTotal -= rLength;
1196
- if (delimTotal > 0)
1197
- continue; // Haven't found enough closing delimiters
1198
- // Remove extra characters. *a*** -> *a*
1199
- rLength = Math.min(rLength, rLength + delimTotal + midDelimTotal);
1200
- // char length can be >1 for unicode characters;
1201
- const lastCharLength = [...match[0]][0].length;
1202
- const raw = src.slice(0, lLength + match.index + lastCharLength + rLength);
1203
- // Create `em` if smallest delimiter has odd char count. *a***
1204
- if (Math.min(lLength, rLength) % 2) {
1205
- const text = raw.slice(1, -1);
1206
- return {
1207
- type: 'em',
1208
- raw,
1209
- text,
1210
- tokens: this.lexer.inlineTokens(text),
1211
- };
1212
- }
1213
- // Create 'strong' if smallest delimiter has even char count. **a***
1214
- const text = raw.slice(2, -2);
1215
- return {
1216
- type: 'strong',
1217
- raw,
1218
- text,
1219
- tokens: this.lexer.inlineTokens(text),
1220
- };
1221
- }
1222
- }
1223
- }
1224
- codespan(src) {
1225
- const cap = this.rules.inline.code.exec(src);
1226
- if (cap) {
1227
- let text = cap[2].replace(this.rules.other.newLineCharGlobal, ' ');
1228
- const hasNonSpaceChars = this.rules.other.nonSpaceChar.test(text);
1229
- const hasSpaceCharsOnBothEnds = this.rules.other.startingSpaceChar.test(text) && this.rules.other.endingSpaceChar.test(text);
1230
- if (hasNonSpaceChars && hasSpaceCharsOnBothEnds) {
1231
- text = text.substring(1, text.length - 1);
1232
- }
1233
- return {
1234
- type: 'codespan',
1235
- raw: cap[0],
1236
- text,
1237
- };
1238
- }
1239
- }
1240
- br(src) {
1241
- const cap = this.rules.inline.br.exec(src);
1242
- if (cap) {
1243
- return {
1244
- type: 'br',
1245
- raw: cap[0],
1246
- };
1247
- }
1248
- }
1249
- del(src) {
1250
- const cap = this.rules.inline.del.exec(src);
1251
- if (cap) {
1252
- return {
1253
- type: 'del',
1254
- raw: cap[0],
1255
- text: cap[2],
1256
- tokens: this.lexer.inlineTokens(cap[2]),
1257
- };
1258
- }
1259
- }
1260
- autolink(src) {
1261
- const cap = this.rules.inline.autolink.exec(src);
1262
- if (cap) {
1263
- let text, href;
1264
- if (cap[2] === '@') {
1265
- text = cap[1];
1266
- href = 'mailto:' + text;
1267
- }
1268
- else {
1269
- text = cap[1];
1270
- href = text;
1271
- }
1272
- return {
1273
- type: 'link',
1274
- raw: cap[0],
1275
- text,
1276
- href,
1277
- tokens: [
1278
- {
1279
- type: 'text',
1280
- raw: text,
1281
- text,
1282
- },
1283
- ],
1284
- };
1285
- }
1286
- }
1287
- url(src) {
1288
- let cap;
1289
- if (cap = this.rules.inline.url.exec(src)) {
1290
- let text, href;
1291
- if (cap[2] === '@') {
1292
- text = cap[0];
1293
- href = 'mailto:' + text;
1294
- }
1295
- else {
1296
- // do extended autolink path validation
1297
- let prevCapZero;
1298
- do {
1299
- prevCapZero = cap[0];
1300
- cap[0] = this.rules.inline._backpedal.exec(cap[0])?.[0] ?? '';
1301
- } while (prevCapZero !== cap[0]);
1302
- text = cap[0];
1303
- if (cap[1] === 'www.') {
1304
- href = 'http://' + cap[0];
1305
- }
1306
- else {
1307
- href = cap[0];
1308
- }
1309
- }
1310
- return {
1311
- type: 'link',
1312
- raw: cap[0],
1313
- text,
1314
- href,
1315
- tokens: [
1316
- {
1317
- type: 'text',
1318
- raw: text,
1319
- text,
1320
- },
1321
- ],
1322
- };
1323
- }
1324
- }
1325
- inlineText(src) {
1326
- const cap = this.rules.inline.text.exec(src);
1327
- if (cap) {
1328
- const escaped = this.lexer.state.inRawBlock;
1329
- return {
1330
- type: 'text',
1331
- raw: cap[0],
1332
- text: cap[0],
1333
- escaped,
1334
- };
1335
- }
1336
- }
1337
- }
1338
-
1339
- /**
1340
- * Block Lexer
1341
- */
1342
- class _Lexer {
1343
- tokens;
1344
- options;
1345
- state;
1346
- tokenizer;
1347
- inlineQueue;
1348
- constructor(options) {
1349
- // TokenList cannot be created in one go
1350
- this.tokens = [];
1351
- this.tokens.links = Object.create(null);
1352
- this.options = options || _defaults;
1353
- this.options.tokenizer = this.options.tokenizer || new _Tokenizer();
1354
- this.tokenizer = this.options.tokenizer;
1355
- this.tokenizer.options = this.options;
1356
- this.tokenizer.lexer = this;
1357
- this.inlineQueue = [];
1358
- this.state = {
1359
- inLink: false,
1360
- inRawBlock: false,
1361
- top: true,
1362
- };
1363
- const rules = {
1364
- other,
1365
- block: block.normal,
1366
- inline: inline.normal,
1367
- };
1368
- if (this.options.pedantic) {
1369
- rules.block = block.pedantic;
1370
- rules.inline = inline.pedantic;
1371
- }
1372
- else if (this.options.gfm) {
1373
- rules.block = block.gfm;
1374
- if (this.options.breaks) {
1375
- rules.inline = inline.breaks;
1376
- }
1377
- else {
1378
- rules.inline = inline.gfm;
1379
- }
1380
- }
1381
- this.tokenizer.rules = rules;
1382
- }
1383
- /**
1384
- * Expose Rules
1385
- */
1386
- static get rules() {
1387
- return {
1388
- block,
1389
- inline,
1390
- };
1391
- }
1392
- /**
1393
- * Static Lex Method
1394
- */
1395
- static lex(src, options) {
1396
- const lexer = new _Lexer(options);
1397
- return lexer.lex(src);
1398
- }
1399
- /**
1400
- * Static Lex Inline Method
1401
- */
1402
- static lexInline(src, options) {
1403
- const lexer = new _Lexer(options);
1404
- return lexer.inlineTokens(src);
1405
- }
1406
- /**
1407
- * Preprocessing
1408
- */
1409
- lex(src) {
1410
- src = src.replace(other.carriageReturn, '\n');
1411
- this.blockTokens(src, this.tokens);
1412
- for (let i = 0; i < this.inlineQueue.length; i++) {
1413
- const next = this.inlineQueue[i];
1414
- this.inlineTokens(next.src, next.tokens);
1415
- }
1416
- this.inlineQueue = [];
1417
- return this.tokens;
1418
- }
1419
- blockTokens(src, tokens = [], lastParagraphClipped = false) {
1420
- if (this.options.pedantic) {
1421
- src = src.replace(other.tabCharGlobal, ' ').replace(other.spaceLine, '');
1422
- }
1423
- while (src) {
1424
- let token;
1425
- if (this.options.extensions?.block?.some((extTokenizer) => {
1426
- if (token = extTokenizer.call({ lexer: this }, src, tokens)) {
1427
- src = src.substring(token.raw.length);
1428
- tokens.push(token);
1429
- return true;
1430
- }
1431
- return false;
1432
- })) {
1433
- continue;
1434
- }
1435
- // newline
1436
- if (token = this.tokenizer.space(src)) {
1437
- src = src.substring(token.raw.length);
1438
- const lastToken = tokens.at(-1);
1439
- if (token.raw.length === 1 && lastToken !== undefined) {
1440
- // if there's a single \n as a spacer, it's terminating the last line,
1441
- // so move it there so that we don't get unnecessary paragraph tags
1442
- lastToken.raw += '\n';
1443
- }
1444
- else {
1445
- tokens.push(token);
1446
- }
1447
- continue;
1448
- }
1449
- // code
1450
- if (token = this.tokenizer.code(src)) {
1451
- src = src.substring(token.raw.length);
1452
- const lastToken = tokens.at(-1);
1453
- // An indented code block cannot interrupt a paragraph.
1454
- if (lastToken?.type === 'paragraph' || lastToken?.type === 'text') {
1455
- lastToken.raw += '\n' + token.raw;
1456
- lastToken.text += '\n' + token.text;
1457
- this.inlineQueue.at(-1).src = lastToken.text;
1458
- }
1459
- else {
1460
- tokens.push(token);
1461
- }
1462
- continue;
1463
- }
1464
- // fences
1465
- if (token = this.tokenizer.fences(src)) {
1466
- src = src.substring(token.raw.length);
1467
- tokens.push(token);
1468
- continue;
1469
- }
1470
- // heading
1471
- if (token = this.tokenizer.heading(src)) {
1472
- src = src.substring(token.raw.length);
1473
- tokens.push(token);
1474
- continue;
1475
- }
1476
- // hr
1477
- if (token = this.tokenizer.hr(src)) {
1478
- src = src.substring(token.raw.length);
1479
- tokens.push(token);
1480
- continue;
1481
- }
1482
- // blockquote
1483
- if (token = this.tokenizer.blockquote(src)) {
1484
- src = src.substring(token.raw.length);
1485
- tokens.push(token);
1486
- continue;
1487
- }
1488
- // list
1489
- if (token = this.tokenizer.list(src)) {
1490
- src = src.substring(token.raw.length);
1491
- tokens.push(token);
1492
- continue;
1493
- }
1494
- // html
1495
- if (token = this.tokenizer.html(src)) {
1496
- src = src.substring(token.raw.length);
1497
- tokens.push(token);
1498
- continue;
1499
- }
1500
- // def
1501
- if (token = this.tokenizer.def(src)) {
1502
- src = src.substring(token.raw.length);
1503
- const lastToken = tokens.at(-1);
1504
- if (lastToken?.type === 'paragraph' || lastToken?.type === 'text') {
1505
- lastToken.raw += '\n' + token.raw;
1506
- lastToken.text += '\n' + token.raw;
1507
- this.inlineQueue.at(-1).src = lastToken.text;
1508
- }
1509
- else if (!this.tokens.links[token.tag]) {
1510
- this.tokens.links[token.tag] = {
1511
- href: token.href,
1512
- title: token.title,
1513
- };
1514
- }
1515
- continue;
1516
- }
1517
- // table (gfm)
1518
- if (token = this.tokenizer.table(src)) {
1519
- src = src.substring(token.raw.length);
1520
- tokens.push(token);
1521
- continue;
1522
- }
1523
- // lheading
1524
- if (token = this.tokenizer.lheading(src)) {
1525
- src = src.substring(token.raw.length);
1526
- tokens.push(token);
1527
- continue;
1528
- }
1529
- // top-level paragraph
1530
- // prevent paragraph consuming extensions by clipping 'src' to extension start
1531
- let cutSrc = src;
1532
- if (this.options.extensions?.startBlock) {
1533
- let startIndex = Infinity;
1534
- const tempSrc = src.slice(1);
1535
- let tempStart;
1536
- this.options.extensions.startBlock.forEach((getStartIndex) => {
1537
- tempStart = getStartIndex.call({ lexer: this }, tempSrc);
1538
- if (typeof tempStart === 'number' && tempStart >= 0) {
1539
- startIndex = Math.min(startIndex, tempStart);
1540
- }
1541
- });
1542
- if (startIndex < Infinity && startIndex >= 0) {
1543
- cutSrc = src.substring(0, startIndex + 1);
1544
- }
1545
- }
1546
- if (this.state.top && (token = this.tokenizer.paragraph(cutSrc))) {
1547
- const lastToken = tokens.at(-1);
1548
- if (lastParagraphClipped && lastToken?.type === 'paragraph') {
1549
- lastToken.raw += '\n' + token.raw;
1550
- lastToken.text += '\n' + token.text;
1551
- this.inlineQueue.pop();
1552
- this.inlineQueue.at(-1).src = lastToken.text;
1553
- }
1554
- else {
1555
- tokens.push(token);
1556
- }
1557
- lastParagraphClipped = cutSrc.length !== src.length;
1558
- src = src.substring(token.raw.length);
1559
- continue;
1560
- }
1561
- // text
1562
- if (token = this.tokenizer.text(src)) {
1563
- src = src.substring(token.raw.length);
1564
- const lastToken = tokens.at(-1);
1565
- if (lastToken?.type === 'text') {
1566
- lastToken.raw += '\n' + token.raw;
1567
- lastToken.text += '\n' + token.text;
1568
- this.inlineQueue.pop();
1569
- this.inlineQueue.at(-1).src = lastToken.text;
1570
- }
1571
- else {
1572
- tokens.push(token);
1573
- }
1574
- continue;
1575
- }
1576
- if (src) {
1577
- const errMsg = 'Infinite loop on byte: ' + src.charCodeAt(0);
1578
- if (this.options.silent) {
1579
- console.error(errMsg);
1580
- break;
1581
- }
1582
- else {
1583
- throw new Error(errMsg);
1584
- }
1585
- }
1586
- }
1587
- this.state.top = true;
1588
- return tokens;
1589
- }
1590
- inline(src, tokens = []) {
1591
- this.inlineQueue.push({ src, tokens });
1592
- return tokens;
1593
- }
1594
- /**
1595
- * Lexing/Compiling
1596
- */
1597
- inlineTokens(src, tokens = []) {
1598
- // String with links masked to avoid interference with em and strong
1599
- let maskedSrc = src;
1600
- let match = null;
1601
- // Mask out reflinks
1602
- if (this.tokens.links) {
1603
- const links = Object.keys(this.tokens.links);
1604
- if (links.length > 0) {
1605
- while ((match = this.tokenizer.rules.inline.reflinkSearch.exec(maskedSrc)) != null) {
1606
- if (links.includes(match[0].slice(match[0].lastIndexOf('[') + 1, -1))) {
1607
- maskedSrc = maskedSrc.slice(0, match.index)
1608
- + '[' + 'a'.repeat(match[0].length - 2) + ']'
1609
- + maskedSrc.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex);
1610
- }
1611
- }
1612
- }
1613
- }
1614
- // Mask out escaped characters
1615
- while ((match = this.tokenizer.rules.inline.anyPunctuation.exec(maskedSrc)) != null) {
1616
- maskedSrc = maskedSrc.slice(0, match.index) + '++' + maskedSrc.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);
1617
- }
1618
- // Mask out other blocks
1619
- while ((match = this.tokenizer.rules.inline.blockSkip.exec(maskedSrc)) != null) {
1620
- maskedSrc = maskedSrc.slice(0, match.index) + '[' + 'a'.repeat(match[0].length - 2) + ']' + maskedSrc.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);
1621
- }
1622
- let keepPrevChar = false;
1623
- let prevChar = '';
1624
- while (src) {
1625
- if (!keepPrevChar) {
1626
- prevChar = '';
1627
- }
1628
- keepPrevChar = false;
1629
- let token;
1630
- // extensions
1631
- if (this.options.extensions?.inline?.some((extTokenizer) => {
1632
- if (token = extTokenizer.call({ lexer: this }, src, tokens)) {
1633
- src = src.substring(token.raw.length);
1634
- tokens.push(token);
1635
- return true;
1636
- }
1637
- return false;
1638
- })) {
1639
- continue;
1640
- }
1641
- // escape
1642
- if (token = this.tokenizer.escape(src)) {
1643
- src = src.substring(token.raw.length);
1644
- tokens.push(token);
1645
- continue;
1646
- }
1647
- // tag
1648
- if (token = this.tokenizer.tag(src)) {
1649
- src = src.substring(token.raw.length);
1650
- tokens.push(token);
1651
- continue;
1652
- }
1653
- // link
1654
- if (token = this.tokenizer.link(src)) {
1655
- src = src.substring(token.raw.length);
1656
- tokens.push(token);
1657
- continue;
1658
- }
1659
- // reflink, nolink
1660
- if (token = this.tokenizer.reflink(src, this.tokens.links)) {
1661
- src = src.substring(token.raw.length);
1662
- const lastToken = tokens.at(-1);
1663
- if (token.type === 'text' && lastToken?.type === 'text') {
1664
- lastToken.raw += token.raw;
1665
- lastToken.text += token.text;
1666
- }
1667
- else {
1668
- tokens.push(token);
1669
- }
1670
- continue;
1671
- }
1672
- // em & strong
1673
- if (token = this.tokenizer.emStrong(src, maskedSrc, prevChar)) {
1674
- src = src.substring(token.raw.length);
1675
- tokens.push(token);
1676
- continue;
1677
- }
1678
- // code
1679
- if (token = this.tokenizer.codespan(src)) {
1680
- src = src.substring(token.raw.length);
1681
- tokens.push(token);
1682
- continue;
1683
- }
1684
- // br
1685
- if (token = this.tokenizer.br(src)) {
1686
- src = src.substring(token.raw.length);
1687
- tokens.push(token);
1688
- continue;
1689
- }
1690
- // del (gfm)
1691
- if (token = this.tokenizer.del(src)) {
1692
- src = src.substring(token.raw.length);
1693
- tokens.push(token);
1694
- continue;
1695
- }
1696
- // autolink
1697
- if (token = this.tokenizer.autolink(src)) {
1698
- src = src.substring(token.raw.length);
1699
- tokens.push(token);
1700
- continue;
1701
- }
1702
- // url (gfm)
1703
- if (!this.state.inLink && (token = this.tokenizer.url(src))) {
1704
- src = src.substring(token.raw.length);
1705
- tokens.push(token);
1706
- continue;
1707
- }
1708
- // text
1709
- // prevent inlineText consuming extensions by clipping 'src' to extension start
1710
- let cutSrc = src;
1711
- if (this.options.extensions?.startInline) {
1712
- let startIndex = Infinity;
1713
- const tempSrc = src.slice(1);
1714
- let tempStart;
1715
- this.options.extensions.startInline.forEach((getStartIndex) => {
1716
- tempStart = getStartIndex.call({ lexer: this }, tempSrc);
1717
- if (typeof tempStart === 'number' && tempStart >= 0) {
1718
- startIndex = Math.min(startIndex, tempStart);
1719
- }
1720
- });
1721
- if (startIndex < Infinity && startIndex >= 0) {
1722
- cutSrc = src.substring(0, startIndex + 1);
1723
- }
1724
- }
1725
- if (token = this.tokenizer.inlineText(cutSrc)) {
1726
- src = src.substring(token.raw.length);
1727
- if (token.raw.slice(-1) !== '_') { // Track prevChar before string of ____ started
1728
- prevChar = token.raw.slice(-1);
1729
- }
1730
- keepPrevChar = true;
1731
- const lastToken = tokens.at(-1);
1732
- if (lastToken?.type === 'text') {
1733
- lastToken.raw += token.raw;
1734
- lastToken.text += token.text;
1735
- }
1736
- else {
1737
- tokens.push(token);
1738
- }
1739
- continue;
1740
- }
1741
- if (src) {
1742
- const errMsg = 'Infinite loop on byte: ' + src.charCodeAt(0);
1743
- if (this.options.silent) {
1744
- console.error(errMsg);
1745
- break;
1746
- }
1747
- else {
1748
- throw new Error(errMsg);
1749
- }
1750
- }
1751
- }
1752
- return tokens;
1753
- }
1754
- }
1755
-
1756
- /**
1757
- * Renderer
1758
- */
1759
- class _Renderer {
1760
- options;
1761
- parser; // set by the parser
1762
- constructor(options) {
1763
- this.options = options || _defaults;
1764
- }
1765
- space(token) {
1766
- return '';
1767
- }
1768
- code({ text, lang, escaped }) {
1769
- const langString = (lang || '').match(other.notSpaceStart)?.[0];
1770
- const code = text.replace(other.endingNewline, '') + '\n';
1771
- if (!langString) {
1772
- return '<pre><code>'
1773
- + (escaped ? code : escape(code, true))
1774
- + '</code></pre>\n';
1775
- }
1776
- return '<pre><code class="language-'
1777
- + escape(langString)
1778
- + '">'
1779
- + (escaped ? code : escape(code, true))
1780
- + '</code></pre>\n';
1781
- }
1782
- blockquote({ tokens }) {
1783
- const body = this.parser.parse(tokens);
1784
- return `<blockquote>\n${body}</blockquote>\n`;
1785
- }
1786
- html({ text }) {
1787
- return text;
1788
- }
1789
- heading({ tokens, depth }) {
1790
- return `<h${depth}>${this.parser.parseInline(tokens)}</h${depth}>\n`;
1791
- }
1792
- hr(token) {
1793
- return '<hr>\n';
1794
- }
1795
- list(token) {
1796
- const ordered = token.ordered;
1797
- const start = token.start;
1798
- let body = '';
1799
- for (let j = 0; j < token.items.length; j++) {
1800
- const item = token.items[j];
1801
- body += this.listitem(item);
1802
- }
1803
- const type = ordered ? 'ol' : 'ul';
1804
- const startAttr = (ordered && start !== 1) ? (' start="' + start + '"') : '';
1805
- return '<' + type + startAttr + '>\n' + body + '</' + type + '>\n';
1806
- }
1807
- listitem(item) {
1808
- let itemBody = '';
1809
- if (item.task) {
1810
- const checkbox = this.checkbox({ checked: !!item.checked });
1811
- if (item.loose) {
1812
- if (item.tokens[0]?.type === 'paragraph') {
1813
- item.tokens[0].text = checkbox + ' ' + item.tokens[0].text;
1814
- if (item.tokens[0].tokens && item.tokens[0].tokens.length > 0 && item.tokens[0].tokens[0].type === 'text') {
1815
- item.tokens[0].tokens[0].text = checkbox + ' ' + escape(item.tokens[0].tokens[0].text);
1816
- item.tokens[0].tokens[0].escaped = true;
1817
- }
1818
- }
1819
- else {
1820
- item.tokens.unshift({
1821
- type: 'text',
1822
- raw: checkbox + ' ',
1823
- text: checkbox + ' ',
1824
- escaped: true,
1825
- });
1826
- }
1827
- }
1828
- else {
1829
- itemBody += checkbox + ' ';
1830
- }
1831
- }
1832
- itemBody += this.parser.parse(item.tokens, !!item.loose);
1833
- return `<li>${itemBody}</li>\n`;
1834
- }
1835
- checkbox({ checked }) {
1836
- return '<input '
1837
- + (checked ? 'checked="" ' : '')
1838
- + 'disabled="" type="checkbox">';
1839
- }
1840
- paragraph({ tokens }) {
1841
- return `<p>${this.parser.parseInline(tokens)}</p>\n`;
1842
- }
1843
- table(token) {
1844
- let header = '';
1845
- // header
1846
- let cell = '';
1847
- for (let j = 0; j < token.header.length; j++) {
1848
- cell += this.tablecell(token.header[j]);
1849
- }
1850
- header += this.tablerow({ text: cell });
1851
- let body = '';
1852
- for (let j = 0; j < token.rows.length; j++) {
1853
- const row = token.rows[j];
1854
- cell = '';
1855
- for (let k = 0; k < row.length; k++) {
1856
- cell += this.tablecell(row[k]);
1857
- }
1858
- body += this.tablerow({ text: cell });
1859
- }
1860
- if (body)
1861
- body = `<tbody>${body}</tbody>`;
1862
- return '<table>\n'
1863
- + '<thead>\n'
1864
- + header
1865
- + '</thead>\n'
1866
- + body
1867
- + '</table>\n';
1868
- }
1869
- tablerow({ text }) {
1870
- return `<tr>\n${text}</tr>\n`;
1871
- }
1872
- tablecell(token) {
1873
- const content = this.parser.parseInline(token.tokens);
1874
- const type = token.header ? 'th' : 'td';
1875
- const tag = token.align
1876
- ? `<${type} align="${token.align}">`
1877
- : `<${type}>`;
1878
- return tag + content + `</${type}>\n`;
1879
- }
1880
- /**
1881
- * span level renderer
1882
- */
1883
- strong({ tokens }) {
1884
- return `<strong>${this.parser.parseInline(tokens)}</strong>`;
1885
- }
1886
- em({ tokens }) {
1887
- return `<em>${this.parser.parseInline(tokens)}</em>`;
1888
- }
1889
- codespan({ text }) {
1890
- return `<code>${escape(text, true)}</code>`;
1891
- }
1892
- br(token) {
1893
- return '<br>';
1894
- }
1895
- del({ tokens }) {
1896
- return `<del>${this.parser.parseInline(tokens)}</del>`;
1897
- }
1898
- link({ href, title, tokens }) {
1899
- const text = this.parser.parseInline(tokens);
1900
- const cleanHref = cleanUrl(href);
1901
- if (cleanHref === null) {
1902
- return text;
1903
- }
1904
- href = cleanHref;
1905
- let out = '<a href="' + href + '"';
1906
- if (title) {
1907
- out += ' title="' + (escape(title)) + '"';
1908
- }
1909
- out += '>' + text + '</a>';
1910
- return out;
1911
- }
1912
- image({ href, title, text, tokens }) {
1913
- if (tokens) {
1914
- text = this.parser.parseInline(tokens, this.parser.textRenderer);
1915
- }
1916
- const cleanHref = cleanUrl(href);
1917
- if (cleanHref === null) {
1918
- return escape(text);
1919
- }
1920
- href = cleanHref;
1921
- let out = `<img src="${href}" alt="${text}"`;
1922
- if (title) {
1923
- out += ` title="${escape(title)}"`;
1924
- }
1925
- out += '>';
1926
- return out;
1927
- }
1928
- text(token) {
1929
- return 'tokens' in token && token.tokens
1930
- ? this.parser.parseInline(token.tokens)
1931
- : ('escaped' in token && token.escaped ? token.text : escape(token.text));
1932
- }
1933
- }
1934
-
1935
- /**
1936
- * TextRenderer
1937
- * returns only the textual part of the token
1938
- */
1939
- class _TextRenderer {
1940
- // no need for block level renderers
1941
- strong({ text }) {
1942
- return text;
1943
- }
1944
- em({ text }) {
1945
- return text;
1946
- }
1947
- codespan({ text }) {
1948
- return text;
1949
- }
1950
- del({ text }) {
1951
- return text;
1952
- }
1953
- html({ text }) {
1954
- return text;
1955
- }
1956
- text({ text }) {
1957
- return text;
1958
- }
1959
- link({ text }) {
1960
- return '' + text;
1961
- }
1962
- image({ text }) {
1963
- return '' + text;
1964
- }
1965
- br() {
1966
- return '';
1967
- }
1968
- }
1969
-
1970
- /**
1971
- * Parsing & Compiling
1972
- */
1973
- class _Parser {
1974
- options;
1975
- renderer;
1976
- textRenderer;
1977
- constructor(options) {
1978
- this.options = options || _defaults;
1979
- this.options.renderer = this.options.renderer || new _Renderer();
1980
- this.renderer = this.options.renderer;
1981
- this.renderer.options = this.options;
1982
- this.renderer.parser = this;
1983
- this.textRenderer = new _TextRenderer();
1984
- }
1985
- /**
1986
- * Static Parse Method
1987
- */
1988
- static parse(tokens, options) {
1989
- const parser = new _Parser(options);
1990
- return parser.parse(tokens);
1991
- }
1992
- /**
1993
- * Static Parse Inline Method
1994
- */
1995
- static parseInline(tokens, options) {
1996
- const parser = new _Parser(options);
1997
- return parser.parseInline(tokens);
1998
- }
1999
- /**
2000
- * Parse Loop
2001
- */
2002
- parse(tokens, top = true) {
2003
- let out = '';
2004
- for (let i = 0; i < tokens.length; i++) {
2005
- const anyToken = tokens[i];
2006
- // Run any renderer extensions
2007
- if (this.options.extensions?.renderers?.[anyToken.type]) {
2008
- const genericToken = anyToken;
2009
- const ret = this.options.extensions.renderers[genericToken.type].call({ parser: this }, genericToken);
2010
- if (ret !== false || !['space', 'hr', 'heading', 'code', 'table', 'blockquote', 'list', 'html', 'paragraph', 'text'].includes(genericToken.type)) {
2011
- out += ret || '';
2012
- continue;
2013
- }
2014
- }
2015
- const token = anyToken;
2016
- switch (token.type) {
2017
- case 'space': {
2018
- out += this.renderer.space(token);
2019
- continue;
2020
- }
2021
- case 'hr': {
2022
- out += this.renderer.hr(token);
2023
- continue;
2024
- }
2025
- case 'heading': {
2026
- out += this.renderer.heading(token);
2027
- continue;
2028
- }
2029
- case 'code': {
2030
- out += this.renderer.code(token);
2031
- continue;
2032
- }
2033
- case 'table': {
2034
- out += this.renderer.table(token);
2035
- continue;
2036
- }
2037
- case 'blockquote': {
2038
- out += this.renderer.blockquote(token);
2039
- continue;
2040
- }
2041
- case 'list': {
2042
- out += this.renderer.list(token);
2043
- continue;
2044
- }
2045
- case 'html': {
2046
- out += this.renderer.html(token);
2047
- continue;
2048
- }
2049
- case 'paragraph': {
2050
- out += this.renderer.paragraph(token);
2051
- continue;
2052
- }
2053
- case 'text': {
2054
- let textToken = token;
2055
- let body = this.renderer.text(textToken);
2056
- while (i + 1 < tokens.length && tokens[i + 1].type === 'text') {
2057
- textToken = tokens[++i];
2058
- body += '\n' + this.renderer.text(textToken);
2059
- }
2060
- if (top) {
2061
- out += this.renderer.paragraph({
2062
- type: 'paragraph',
2063
- raw: body,
2064
- text: body,
2065
- tokens: [{ type: 'text', raw: body, text: body, escaped: true }],
2066
- });
2067
- }
2068
- else {
2069
- out += body;
2070
- }
2071
- continue;
2072
- }
2073
- default: {
2074
- const errMsg = 'Token with "' + token.type + '" type was not found.';
2075
- if (this.options.silent) {
2076
- console.error(errMsg);
2077
- return '';
2078
- }
2079
- else {
2080
- throw new Error(errMsg);
2081
- }
2082
- }
2083
- }
2084
- }
2085
- return out;
2086
- }
2087
- /**
2088
- * Parse Inline Tokens
2089
- */
2090
- parseInline(tokens, renderer = this.renderer) {
2091
- let out = '';
2092
- for (let i = 0; i < tokens.length; i++) {
2093
- const anyToken = tokens[i];
2094
- // Run any renderer extensions
2095
- if (this.options.extensions?.renderers?.[anyToken.type]) {
2096
- const ret = this.options.extensions.renderers[anyToken.type].call({ parser: this }, anyToken);
2097
- if (ret !== false || !['escape', 'html', 'link', 'image', 'strong', 'em', 'codespan', 'br', 'del', 'text'].includes(anyToken.type)) {
2098
- out += ret || '';
2099
- continue;
2100
- }
2101
- }
2102
- const token = anyToken;
2103
- switch (token.type) {
2104
- case 'escape': {
2105
- out += renderer.text(token);
2106
- break;
2107
- }
2108
- case 'html': {
2109
- out += renderer.html(token);
2110
- break;
2111
- }
2112
- case 'link': {
2113
- out += renderer.link(token);
2114
- break;
2115
- }
2116
- case 'image': {
2117
- out += renderer.image(token);
2118
- break;
2119
- }
2120
- case 'strong': {
2121
- out += renderer.strong(token);
2122
- break;
2123
- }
2124
- case 'em': {
2125
- out += renderer.em(token);
2126
- break;
2127
- }
2128
- case 'codespan': {
2129
- out += renderer.codespan(token);
2130
- break;
2131
- }
2132
- case 'br': {
2133
- out += renderer.br(token);
2134
- break;
2135
- }
2136
- case 'del': {
2137
- out += renderer.del(token);
2138
- break;
2139
- }
2140
- case 'text': {
2141
- out += renderer.text(token);
2142
- break;
2143
- }
2144
- default: {
2145
- const errMsg = 'Token with "' + token.type + '" type was not found.';
2146
- if (this.options.silent) {
2147
- console.error(errMsg);
2148
- return '';
2149
- }
2150
- else {
2151
- throw new Error(errMsg);
2152
- }
2153
- }
2154
- }
2155
- }
2156
- return out;
2157
- }
2158
- }
2159
-
2160
- class _Hooks {
2161
- options;
2162
- block;
2163
- constructor(options) {
2164
- this.options = options || _defaults;
2165
- }
2166
- static passThroughHooks = new Set([
2167
- 'preprocess',
2168
- 'postprocess',
2169
- 'processAllTokens',
2170
- ]);
2171
- /**
2172
- * Process markdown before marked
2173
- */
2174
- preprocess(markdown) {
2175
- return markdown;
2176
- }
2177
- /**
2178
- * Process HTML after marked is finished
2179
- */
2180
- postprocess(html) {
2181
- return html;
2182
- }
2183
- /**
2184
- * Process all tokens before walk tokens
2185
- */
2186
- processAllTokens(tokens) {
2187
- return tokens;
2188
- }
2189
- /**
2190
- * Provide function to tokenize markdown
2191
- */
2192
- provideLexer() {
2193
- return this.block ? _Lexer.lex : _Lexer.lexInline;
2194
- }
2195
- /**
2196
- * Provide function to parse tokens
2197
- */
2198
- provideParser() {
2199
- return this.block ? _Parser.parse : _Parser.parseInline;
2200
- }
2201
- }
2202
-
2203
- class Marked {
2204
- defaults = _getDefaults();
2205
- options = this.setOptions;
2206
- parse = this.parseMarkdown(true);
2207
- parseInline = this.parseMarkdown(false);
2208
- Parser = _Parser;
2209
- Renderer = _Renderer;
2210
- TextRenderer = _TextRenderer;
2211
- Lexer = _Lexer;
2212
- Tokenizer = _Tokenizer;
2213
- Hooks = _Hooks;
2214
- constructor(...args) {
2215
- this.use(...args);
2216
- }
2217
- /**
2218
- * Run callback for every token
2219
- */
2220
- walkTokens(tokens, callback) {
2221
- let values = [];
2222
- for (const token of tokens) {
2223
- values = values.concat(callback.call(this, token));
2224
- switch (token.type) {
2225
- case 'table': {
2226
- const tableToken = token;
2227
- for (const cell of tableToken.header) {
2228
- values = values.concat(this.walkTokens(cell.tokens, callback));
2229
- }
2230
- for (const row of tableToken.rows) {
2231
- for (const cell of row) {
2232
- values = values.concat(this.walkTokens(cell.tokens, callback));
2233
- }
2234
- }
2235
- break;
2236
- }
2237
- case 'list': {
2238
- const listToken = token;
2239
- values = values.concat(this.walkTokens(listToken.items, callback));
2240
- break;
2241
- }
2242
- default: {
2243
- const genericToken = token;
2244
- if (this.defaults.extensions?.childTokens?.[genericToken.type]) {
2245
- this.defaults.extensions.childTokens[genericToken.type].forEach((childTokens) => {
2246
- const tokens = genericToken[childTokens].flat(Infinity);
2247
- values = values.concat(this.walkTokens(tokens, callback));
2248
- });
2249
- }
2250
- else if (genericToken.tokens) {
2251
- values = values.concat(this.walkTokens(genericToken.tokens, callback));
2252
- }
2253
- }
2254
- }
2255
- }
2256
- return values;
2257
- }
2258
- use(...args) {
2259
- const extensions = this.defaults.extensions || { renderers: {}, childTokens: {} };
2260
- args.forEach((pack) => {
2261
- // copy options to new object
2262
- const opts = { ...pack };
2263
- // set async to true if it was set to true before
2264
- opts.async = this.defaults.async || opts.async || false;
2265
- // ==-- Parse "addon" extensions --== //
2266
- if (pack.extensions) {
2267
- pack.extensions.forEach((ext) => {
2268
- if (!ext.name) {
2269
- throw new Error('extension name required');
2270
- }
2271
- if ('renderer' in ext) { // Renderer extensions
2272
- const prevRenderer = extensions.renderers[ext.name];
2273
- if (prevRenderer) {
2274
- // Replace extension with func to run new extension but fall back if false
2275
- extensions.renderers[ext.name] = function (...args) {
2276
- let ret = ext.renderer.apply(this, args);
2277
- if (ret === false) {
2278
- ret = prevRenderer.apply(this, args);
2279
- }
2280
- return ret;
2281
- };
2282
- }
2283
- else {
2284
- extensions.renderers[ext.name] = ext.renderer;
2285
- }
2286
- }
2287
- if ('tokenizer' in ext) { // Tokenizer Extensions
2288
- if (!ext.level || (ext.level !== 'block' && ext.level !== 'inline')) {
2289
- throw new Error("extension level must be 'block' or 'inline'");
2290
- }
2291
- const extLevel = extensions[ext.level];
2292
- if (extLevel) {
2293
- extLevel.unshift(ext.tokenizer);
2294
- }
2295
- else {
2296
- extensions[ext.level] = [ext.tokenizer];
2297
- }
2298
- if (ext.start) { // Function to check for start of token
2299
- if (ext.level === 'block') {
2300
- if (extensions.startBlock) {
2301
- extensions.startBlock.push(ext.start);
2302
- }
2303
- else {
2304
- extensions.startBlock = [ext.start];
2305
- }
2306
- }
2307
- else if (ext.level === 'inline') {
2308
- if (extensions.startInline) {
2309
- extensions.startInline.push(ext.start);
2310
- }
2311
- else {
2312
- extensions.startInline = [ext.start];
2313
- }
2314
- }
2315
- }
2316
- }
2317
- if ('childTokens' in ext && ext.childTokens) { // Child tokens to be visited by walkTokens
2318
- extensions.childTokens[ext.name] = ext.childTokens;
2319
- }
2320
- });
2321
- opts.extensions = extensions;
2322
- }
2323
- // ==-- Parse "overwrite" extensions --== //
2324
- if (pack.renderer) {
2325
- const renderer = this.defaults.renderer || new _Renderer(this.defaults);
2326
- for (const prop in pack.renderer) {
2327
- if (!(prop in renderer)) {
2328
- throw new Error(`renderer '${prop}' does not exist`);
2329
- }
2330
- if (['options', 'parser'].includes(prop)) {
2331
- // ignore options property
2332
- continue;
2333
- }
2334
- const rendererProp = prop;
2335
- const rendererFunc = pack.renderer[rendererProp];
2336
- const prevRenderer = renderer[rendererProp];
2337
- // Replace renderer with func to run extension, but fall back if false
2338
- renderer[rendererProp] = (...args) => {
2339
- let ret = rendererFunc.apply(renderer, args);
2340
- if (ret === false) {
2341
- ret = prevRenderer.apply(renderer, args);
2342
- }
2343
- return ret || '';
2344
- };
2345
- }
2346
- opts.renderer = renderer;
2347
- }
2348
- if (pack.tokenizer) {
2349
- const tokenizer = this.defaults.tokenizer || new _Tokenizer(this.defaults);
2350
- for (const prop in pack.tokenizer) {
2351
- if (!(prop in tokenizer)) {
2352
- throw new Error(`tokenizer '${prop}' does not exist`);
2353
- }
2354
- if (['options', 'rules', 'lexer'].includes(prop)) {
2355
- // ignore options, rules, and lexer properties
2356
- continue;
2357
- }
2358
- const tokenizerProp = prop;
2359
- const tokenizerFunc = pack.tokenizer[tokenizerProp];
2360
- const prevTokenizer = tokenizer[tokenizerProp];
2361
- // Replace tokenizer with func to run extension, but fall back if false
2362
- // @ts-expect-error cannot type tokenizer function dynamically
2363
- tokenizer[tokenizerProp] = (...args) => {
2364
- let ret = tokenizerFunc.apply(tokenizer, args);
2365
- if (ret === false) {
2366
- ret = prevTokenizer.apply(tokenizer, args);
2367
- }
2368
- return ret;
2369
- };
2370
- }
2371
- opts.tokenizer = tokenizer;
2372
- }
2373
- // ==-- Parse Hooks extensions --== //
2374
- if (pack.hooks) {
2375
- const hooks = this.defaults.hooks || new _Hooks();
2376
- for (const prop in pack.hooks) {
2377
- if (!(prop in hooks)) {
2378
- throw new Error(`hook '${prop}' does not exist`);
2379
- }
2380
- if (['options', 'block'].includes(prop)) {
2381
- // ignore options and block properties
2382
- continue;
2383
- }
2384
- const hooksProp = prop;
2385
- const hooksFunc = pack.hooks[hooksProp];
2386
- const prevHook = hooks[hooksProp];
2387
- if (_Hooks.passThroughHooks.has(prop)) {
2388
- // @ts-expect-error cannot type hook function dynamically
2389
- hooks[hooksProp] = (arg) => {
2390
- if (this.defaults.async) {
2391
- return Promise.resolve(hooksFunc.call(hooks, arg)).then(ret => {
2392
- return prevHook.call(hooks, ret);
2393
- });
2394
- }
2395
- const ret = hooksFunc.call(hooks, arg);
2396
- return prevHook.call(hooks, ret);
2397
- };
2398
- }
2399
- else {
2400
- // @ts-expect-error cannot type hook function dynamically
2401
- hooks[hooksProp] = (...args) => {
2402
- let ret = hooksFunc.apply(hooks, args);
2403
- if (ret === false) {
2404
- ret = prevHook.apply(hooks, args);
2405
- }
2406
- return ret;
2407
- };
2408
- }
2409
- }
2410
- opts.hooks = hooks;
2411
- }
2412
- // ==-- Parse WalkTokens extensions --== //
2413
- if (pack.walkTokens) {
2414
- const walkTokens = this.defaults.walkTokens;
2415
- const packWalktokens = pack.walkTokens;
2416
- opts.walkTokens = function (token) {
2417
- let values = [];
2418
- values.push(packWalktokens.call(this, token));
2419
- if (walkTokens) {
2420
- values = values.concat(walkTokens.call(this, token));
2421
- }
2422
- return values;
2423
- };
2424
- }
2425
- this.defaults = { ...this.defaults, ...opts };
2426
- });
2427
- return this;
2428
- }
2429
- setOptions(opt) {
2430
- this.defaults = { ...this.defaults, ...opt };
2431
- return this;
2432
- }
2433
- lexer(src, options) {
2434
- return _Lexer.lex(src, options ?? this.defaults);
2435
- }
2436
- parser(tokens, options) {
2437
- return _Parser.parse(tokens, options ?? this.defaults);
2438
- }
2439
- parseMarkdown(blockType) {
2440
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
2441
- const parse = (src, options) => {
2442
- const origOpt = { ...options };
2443
- const opt = { ...this.defaults, ...origOpt };
2444
- const throwError = this.onError(!!opt.silent, !!opt.async);
2445
- // throw error if an extension set async to true but parse was called with async: false
2446
- if (this.defaults.async === true && origOpt.async === false) {
2447
- return throwError(new Error('marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise.'));
2448
- }
2449
- // throw error in case of non string input
2450
- if (typeof src === 'undefined' || src === null) {
2451
- return throwError(new Error('marked(): input parameter is undefined or null'));
2452
- }
2453
- if (typeof src !== 'string') {
2454
- return throwError(new Error('marked(): input parameter is of type '
2455
- + Object.prototype.toString.call(src) + ', string expected'));
2456
- }
2457
- if (opt.hooks) {
2458
- opt.hooks.options = opt;
2459
- opt.hooks.block = blockType;
2460
- }
2461
- const lexer = opt.hooks ? opt.hooks.provideLexer() : (blockType ? _Lexer.lex : _Lexer.lexInline);
2462
- const parser = opt.hooks ? opt.hooks.provideParser() : (blockType ? _Parser.parse : _Parser.parseInline);
2463
- if (opt.async) {
2464
- return Promise.resolve(opt.hooks ? opt.hooks.preprocess(src) : src)
2465
- .then(src => lexer(src, opt))
2466
- .then(tokens => opt.hooks ? opt.hooks.processAllTokens(tokens) : tokens)
2467
- .then(tokens => opt.walkTokens ? Promise.all(this.walkTokens(tokens, opt.walkTokens)).then(() => tokens) : tokens)
2468
- .then(tokens => parser(tokens, opt))
2469
- .then(html => opt.hooks ? opt.hooks.postprocess(html) : html)
2470
- .catch(throwError);
2471
- }
2472
- try {
2473
- if (opt.hooks) {
2474
- src = opt.hooks.preprocess(src);
2475
- }
2476
- let tokens = lexer(src, opt);
2477
- if (opt.hooks) {
2478
- tokens = opt.hooks.processAllTokens(tokens);
2479
- }
2480
- if (opt.walkTokens) {
2481
- this.walkTokens(tokens, opt.walkTokens);
2482
- }
2483
- let html = parser(tokens, opt);
2484
- if (opt.hooks) {
2485
- html = opt.hooks.postprocess(html);
2486
- }
2487
- return html;
2488
- }
2489
- catch (e) {
2490
- return throwError(e);
2491
- }
2492
- };
2493
- return parse;
2494
- }
2495
- onError(silent, async) {
2496
- return (e) => {
2497
- e.message += '\nPlease report this to https://github.com/markedjs/marked.';
2498
- if (silent) {
2499
- const msg = '<p>An error occurred:</p><pre>'
2500
- + escape(e.message + '', true)
2501
- + '</pre>';
2502
- if (async) {
2503
- return Promise.resolve(msg);
2504
- }
2505
- return msg;
2506
- }
2507
- if (async) {
2508
- return Promise.reject(e);
2509
- }
2510
- throw e;
2511
- };
2512
- }
2513
- }
2514
-
2515
- const markedInstance = new Marked();
2516
- function marked(src, opt) {
2517
- return markedInstance.parse(src, opt);
2518
- }
2519
- /**
2520
- * Sets the default options.
2521
- *
2522
- * @param options Hash of options
2523
- */
2524
- marked.options =
2525
- marked.setOptions = function (options) {
2526
- markedInstance.setOptions(options);
2527
- marked.defaults = markedInstance.defaults;
2528
- changeDefaults(marked.defaults);
2529
- return marked;
2530
- };
2531
- /**
2532
- * Gets the original marked default options.
2533
- */
2534
- marked.getDefaults = _getDefaults;
2535
- marked.defaults = _defaults;
2536
- /**
2537
- * Use Extension
2538
- */
2539
- marked.use = function (...args) {
2540
- markedInstance.use(...args);
2541
- marked.defaults = markedInstance.defaults;
2542
- changeDefaults(marked.defaults);
2543
- return marked;
2544
- };
2545
- /**
2546
- * Run callback for every token
2547
- */
2548
- marked.walkTokens = function (tokens, callback) {
2549
- return markedInstance.walkTokens(tokens, callback);
2550
- };
2551
- /**
2552
- * Compiles markdown to HTML without enclosing `p` tag.
2553
- *
2554
- * @param src String of markdown source to be compiled
2555
- * @param options Hash of options
2556
- * @return String of compiled HTML
2557
- */
2558
- marked.parseInline = markedInstance.parseInline;
2559
- /**
2560
- * Expose
2561
- */
2562
- marked.Parser = _Parser;
2563
- marked.parser = _Parser.parse;
2564
- marked.Renderer = _Renderer;
2565
- marked.TextRenderer = _TextRenderer;
2566
- marked.Lexer = _Lexer;
2567
- marked.lexer = _Lexer.lex;
2568
- marked.Tokenizer = _Tokenizer;
2569
- marked.Hooks = _Hooks;
2570
- marked.parse = marked;
2571
- const options = marked.options;
2572
- const setOptions = marked.setOptions;
2573
- const use = marked.use;
2574
- const walkTokens = marked.walkTokens;
2575
- const parseInline = marked.parseInline;
2576
- const parse = marked;
2577
- const parser = _Parser.parse;
2578
- const lexer = _Lexer.lex;
2579
-
2580
- export { _Hooks as Hooks, _Lexer as Lexer, Marked, _Parser as Parser, _Renderer as Renderer, _TextRenderer as TextRenderer, _Tokenizer as Tokenizer, _defaults as defaults, _getDefaults as getDefaults, lexer, marked, options, parse, parseInline, parser, setOptions, use, walkTokens };
12
+ function M(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var w=M();function H(a){w=a}var C={exec:()=>null};function h(a,e=""){let t=typeof a=="string"?a:a.source,n={replace:(s,i)=>{let r=typeof i=="string"?i:i.source;return r=r.replace(m.caret,"$1"),t=t.replace(s,r),n},getRegex:()=>new RegExp(t,e)};return n}var m={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] /,listReplaceTask:/^\[[ xX]\] +/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^<a /i,endATag:/^<\/a>/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^</,endAngleBracket:/>$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,unescapeTest:/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:a=>new RegExp(`^( {0,3}${a})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}#`),htmlBeginRegex:a=>new RegExp(`^ {0,${Math.min(3,a-1)}}<(?:[a-z].*>|!--)`,"i")},xe=/^(?:[ \t]*(?:\n|$))+/,be=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,Te=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,I=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,we=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,j=/(?:[*+-]|\d{1,9}[.)])/,re=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,ie=h(re).replace(/bull/g,j).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),ye=h(re).replace(/bull/g,j).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),F=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,Re=/^[^\n]+/,Q=/(?!\s*\])(?:\\.|[^\[\]\\])+/,Se=h(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",Q).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),$e=h(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,j).getRegex(),v="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",U=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,_e=h("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",U).replace("tag",v).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),oe=h(F).replace("hr",I).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex(),Le=h(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",oe).getRegex(),K={blockquote:Le,code:be,def:Se,fences:Te,heading:we,hr:I,html:_e,lheading:ie,list:$e,newline:xe,paragraph:oe,table:C,text:Re},se=h("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",I).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex(),ze={...K,lheading:ye,table:se,paragraph:h(F).replace("hr",I).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",se).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex()},Me={...K,html:h(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",U).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:C,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:h(F).replace("hr",I).replace("heading",` *#{1,6} *[^
13
+ ]`).replace("lheading",ie).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},Pe=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,Ae=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,le=/^( {2,}|\\)\n(?!\s*$)/,Ee=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,D=/[\p{P}\p{S}]/u,X=/[\s\p{P}\p{S}]/u,ae=/[^\s\p{P}\p{S}]/u,Ce=h(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,X).getRegex(),ce=/(?!~)[\p{P}\p{S}]/u,Ie=/(?!~)[\s\p{P}\p{S}]/u,Oe=/(?:[^\s\p{P}\p{S}]|~)/u,Be=/\[[^[\]]*?\]\((?:\\.|[^\\\(\)]|\((?:\\.|[^\\\(\)])*\))*\)|`[^`]*?`|<[^<>]*?>/g,pe=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,qe=h(pe,"u").replace(/punct/g,D).getRegex(),ve=h(pe,"u").replace(/punct/g,ce).getRegex(),ue="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",De=h(ue,"gu").replace(/notPunctSpace/g,ae).replace(/punctSpace/g,X).replace(/punct/g,D).getRegex(),Ze=h(ue,"gu").replace(/notPunctSpace/g,Oe).replace(/punctSpace/g,Ie).replace(/punct/g,ce).getRegex(),Ge=h("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,ae).replace(/punctSpace/g,X).replace(/punct/g,D).getRegex(),He=h(/\\(punct)/,"gu").replace(/punct/g,D).getRegex(),Ne=h(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),je=h(U).replace("(?:-->|$)","-->").getRegex(),Fe=h("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",je).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),q=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,Qe=h(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",q).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),he=h(/^!?\[(label)\]\[(ref)\]/).replace("label",q).replace("ref",Q).getRegex(),ke=h(/^!?\[(ref)\](?:\[\])?/).replace("ref",Q).getRegex(),Ue=h("reflink|nolink(?!\\()","g").replace("reflink",he).replace("nolink",ke).getRegex(),W={_backpedal:C,anyPunctuation:He,autolink:Ne,blockSkip:Be,br:le,code:Ae,del:C,emStrongLDelim:qe,emStrongRDelimAst:De,emStrongRDelimUnd:Ge,escape:Pe,link:Qe,nolink:ke,punctuation:Ce,reflink:he,reflinkSearch:Ue,tag:Fe,text:Ee,url:C},Ke={...W,link:h(/^!?\[(label)\]\((.*?)\)/).replace("label",q).getRegex(),reflink:h(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",q).getRegex()},N={...W,emStrongRDelimAst:Ze,emStrongLDelim:ve,url:h(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,"i").replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\.|[^\\])*?(?:\\.|[^\s~\\]))\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/},Xe={...N,br:h(le).replace("{2,}","*").getRegex(),text:h(N.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},O={normal:K,gfm:ze,pedantic:Me},P={normal:W,gfm:N,breaks:Xe,pedantic:Ke};var We={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},ge=a=>We[a];function R(a,e){if(e){if(m.escapeTest.test(a))return a.replace(m.escapeReplace,ge)}else if(m.escapeTestNoEncode.test(a))return a.replace(m.escapeReplaceNoEncode,ge);return a}function J(a){try{a=encodeURI(a).replace(m.percentDecode,"%")}catch{return null}return a}function V(a,e){let t=a.replace(m.findPipe,(i,r,o)=>{let l=!1,c=r;for(;--c>=0&&o[c]==="\\";)l=!l;return l?"|":" |"}),n=t.split(m.splitPipe),s=0;if(n[0].trim()||n.shift(),n.length>0&&!n.at(-1)?.trim()&&n.pop(),e)if(n.length>e)n.splice(e);else for(;n.length<e;)n.push("");for(;s<n.length;s++)n[s]=n[s].trim().replace(m.slashPipe,"|");return n}function A(a,e,t){let n=a.length;if(n===0)return"";let s=0;for(;s<n;){let i=a.charAt(n-s-1);if(i===e&&!t)s++;else if(i!==e&&t)s++;else break}return a.slice(0,n-s)}function fe(a,e){if(a.indexOf(e[1])===-1)return-1;let t=0;for(let n=0;n<a.length;n++)if(a[n]==="\\")n++;else if(a[n]===e[0])t++;else if(a[n]===e[1]&&(t--,t<0))return n;return t>0?-2:-1}function de(a,e,t,n,s){let i=e.href,r=e.title||null,o=a[1].replace(s.other.outputLinkReplace,"$1");n.state.inLink=!0;let l={type:a[0].charAt(0)==="!"?"image":"link",raw:t,href:i,title:r,text:o,tokens:n.inlineTokens(o)};return n.state.inLink=!1,l}function Je(a,e,t){let n=a.match(t.other.indentCodeCompensation);if(n===null)return e;let s=n[1];return e.split(`
14
+ `).map(i=>{let r=i.match(t.other.beginningSpace);if(r===null)return i;let[o]=r;return o.length>=s.length?i.slice(s.length):i}).join(`
15
+ `)}var S=class{options;rules;lexer;constructor(e){this.options=e||w}space(e){let t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}code(e){let t=this.rules.block.code.exec(e);if(t){let n=t[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?n:A(n,`
16
+ `)}}}fences(e){let t=this.rules.block.fences.exec(e);if(t){let n=t[0],s=Je(n,t[3]||"",this.rules);return{type:"code",raw:n,lang:t[2]?t[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):t[2],text:s}}}heading(e){let t=this.rules.block.heading.exec(e);if(t){let n=t[2].trim();if(this.rules.other.endingHash.test(n)){let s=A(n,"#");(this.options.pedantic||!s||this.rules.other.endingSpaceChar.test(s))&&(n=s.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:n,tokens:this.lexer.inline(n)}}}hr(e){let t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:A(t[0],`
17
+ `)}}blockquote(e){let t=this.rules.block.blockquote.exec(e);if(t){let n=A(t[0],`
18
+ `).split(`
19
+ `),s="",i="",r=[];for(;n.length>0;){let o=!1,l=[],c;for(c=0;c<n.length;c++)if(this.rules.other.blockquoteStart.test(n[c]))l.push(n[c]),o=!0;else if(!o)l.push(n[c]);else break;n=n.slice(c);let p=l.join(`
20
+ `),u=p.replace(this.rules.other.blockquoteSetextReplace,`
21
+ $1`).replace(this.rules.other.blockquoteSetextReplace2,"");s=s?`${s}
22
+ ${p}`:p,i=i?`${i}
23
+ ${u}`:u;let d=this.lexer.state.top;if(this.lexer.state.top=!0,this.lexer.blockTokens(u,r,!0),this.lexer.state.top=d,n.length===0)break;let g=r.at(-1);if(g?.type==="code")break;if(g?.type==="blockquote"){let x=g,f=x.raw+`
24
+ `+n.join(`
25
+ `),y=this.blockquote(f);r[r.length-1]=y,s=s.substring(0,s.length-x.raw.length)+y.raw,i=i.substring(0,i.length-x.text.length)+y.text;break}else if(g?.type==="list"){let x=g,f=x.raw+`
26
+ `+n.join(`
27
+ `),y=this.list(f);r[r.length-1]=y,s=s.substring(0,s.length-g.raw.length)+y.raw,i=i.substring(0,i.length-x.raw.length)+y.raw,n=f.substring(r.at(-1).raw.length).split(`
28
+ `);continue}}return{type:"blockquote",raw:s,tokens:r,text:i}}}list(e){let t=this.rules.block.list.exec(e);if(t){let n=t[1].trim(),s=n.length>1,i={type:"list",raw:"",ordered:s,start:s?+n.slice(0,-1):"",loose:!1,items:[]};n=s?`\\d{1,9}\\${n.slice(-1)}`:`\\${n}`,this.options.pedantic&&(n=s?n:"[*+-]");let r=this.rules.other.listItemRegex(n),o=!1;for(;e;){let c=!1,p="",u="";if(!(t=r.exec(e))||this.rules.block.hr.test(e))break;p=t[0],e=e.substring(p.length);let d=t[2].split(`
29
+ `,1)[0].replace(this.rules.other.listReplaceTabs,Z=>" ".repeat(3*Z.length)),g=e.split(`
30
+ `,1)[0],x=!d.trim(),f=0;if(this.options.pedantic?(f=2,u=d.trimStart()):x?f=t[1].length+1:(f=t[2].search(this.rules.other.nonSpaceChar),f=f>4?1:f,u=d.slice(f),f+=t[1].length),x&&this.rules.other.blankLine.test(g)&&(p+=g+`
31
+ `,e=e.substring(g.length+1),c=!0),!c){let Z=this.rules.other.nextBulletRegex(f),ee=this.rules.other.hrRegex(f),te=this.rules.other.fencesBeginRegex(f),ne=this.rules.other.headingBeginRegex(f),me=this.rules.other.htmlBeginRegex(f);for(;e;){let G=e.split(`
32
+ `,1)[0],E;if(g=G,this.options.pedantic?(g=g.replace(this.rules.other.listReplaceNesting," "),E=g):E=g.replace(this.rules.other.tabCharGlobal," "),te.test(g)||ne.test(g)||me.test(g)||Z.test(g)||ee.test(g))break;if(E.search(this.rules.other.nonSpaceChar)>=f||!g.trim())u+=`
33
+ `+E.slice(f);else{if(x||d.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||te.test(d)||ne.test(d)||ee.test(d))break;u+=`
34
+ `+g}!x&&!g.trim()&&(x=!0),p+=G+`
35
+ `,e=e.substring(G.length+1),d=E.slice(f)}}i.loose||(o?i.loose=!0:this.rules.other.doubleBlankLine.test(p)&&(o=!0));let y=null,Y;this.options.gfm&&(y=this.rules.other.listIsTask.exec(u),y&&(Y=y[0]!=="[ ] ",u=u.replace(this.rules.other.listReplaceTask,""))),i.items.push({type:"list_item",raw:p,task:!!y,checked:Y,loose:!1,text:u,tokens:[]}),i.raw+=p}let l=i.items.at(-1);if(l)l.raw=l.raw.trimEnd(),l.text=l.text.trimEnd();else return;i.raw=i.raw.trimEnd();for(let c=0;c<i.items.length;c++)if(this.lexer.state.top=!1,i.items[c].tokens=this.lexer.blockTokens(i.items[c].text,[]),!i.loose){let p=i.items[c].tokens.filter(d=>d.type==="space"),u=p.length>0&&p.some(d=>this.rules.other.anyLine.test(d.raw));i.loose=u}if(i.loose)for(let c=0;c<i.items.length;c++)i.items[c].loose=!0;return i}}html(e){let t=this.rules.block.html.exec(e);if(t)return{type:"html",block:!0,raw:t[0],pre:t[1]==="pre"||t[1]==="script"||t[1]==="style",text:t[0]}}def(e){let t=this.rules.block.def.exec(e);if(t){let n=t[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),s=t[2]?t[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",i=t[3]?t[3].substring(1,t[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):t[3];return{type:"def",tag:n,raw:t[0],href:s,title:i}}}table(e){let t=this.rules.block.table.exec(e);if(!t||!this.rules.other.tableDelimiter.test(t[2]))return;let n=V(t[1]),s=t[2].replace(this.rules.other.tableAlignChars,"").split("|"),i=t[3]?.trim()?t[3].replace(this.rules.other.tableRowBlankLine,"").split(`
36
+ `):[],r={type:"table",raw:t[0],header:[],align:[],rows:[]};if(n.length===s.length){for(let o of s)this.rules.other.tableAlignRight.test(o)?r.align.push("right"):this.rules.other.tableAlignCenter.test(o)?r.align.push("center"):this.rules.other.tableAlignLeft.test(o)?r.align.push("left"):r.align.push(null);for(let o=0;o<n.length;o++)r.header.push({text:n[o],tokens:this.lexer.inline(n[o]),header:!0,align:r.align[o]});for(let o of i)r.rows.push(V(o,r.header.length).map((l,c)=>({text:l,tokens:this.lexer.inline(l),header:!1,align:r.align[c]})));return r}}lheading(e){let t=this.rules.block.lheading.exec(e);if(t)return{type:"heading",raw:t[0],depth:t[2].charAt(0)==="="?1:2,text:t[1],tokens:this.lexer.inline(t[1])}}paragraph(e){let t=this.rules.block.paragraph.exec(e);if(t){let n=t[1].charAt(t[1].length-1)===`
37
+ `?t[1].slice(0,-1):t[1];return{type:"paragraph",raw:t[0],text:n,tokens:this.lexer.inline(n)}}}text(e){let t=this.rules.block.text.exec(e);if(t)return{type:"text",raw:t[0],text:t[0],tokens:this.lexer.inline(t[0])}}escape(e){let t=this.rules.inline.escape.exec(e);if(t)return{type:"escape",raw:t[0],text:t[1]}}tag(e){let t=this.rules.inline.tag.exec(e);if(t)return!this.lexer.state.inLink&&this.rules.other.startATag.test(t[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:t[0]}}link(e){let t=this.rules.inline.link.exec(e);if(t){let n=t[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(n)){if(!this.rules.other.endAngleBracket.test(n))return;let r=A(n.slice(0,-1),"\\");if((n.length-r.length)%2===0)return}else{let r=fe(t[2],"()");if(r===-2)return;if(r>-1){let l=(t[0].indexOf("!")===0?5:4)+t[1].length+r;t[2]=t[2].substring(0,r),t[0]=t[0].substring(0,l).trim(),t[3]=""}}let s=t[2],i="";if(this.options.pedantic){let r=this.rules.other.pedanticHrefTitle.exec(s);r&&(s=r[1],i=r[3])}else i=t[3]?t[3].slice(1,-1):"";return s=s.trim(),this.rules.other.startAngleBracket.test(s)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(n)?s=s.slice(1):s=s.slice(1,-1)),de(t,{href:s&&s.replace(this.rules.inline.anyPunctuation,"$1"),title:i&&i.replace(this.rules.inline.anyPunctuation,"$1")},t[0],this.lexer,this.rules)}}reflink(e,t){let n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){let s=(n[2]||n[1]).replace(this.rules.other.multipleSpaceGlobal," "),i=t[s.toLowerCase()];if(!i){let r=n[0].charAt(0);return{type:"text",raw:r,text:r}}return de(n,i,n[0],this.lexer,this.rules)}}emStrong(e,t,n=""){let s=this.rules.inline.emStrongLDelim.exec(e);if(!s||s[3]&&n.match(this.rules.other.unicodeAlphaNumeric))return;if(!(s[1]||s[2]||"")||!n||this.rules.inline.punctuation.exec(n)){let r=[...s[0]].length-1,o,l,c=r,p=0,u=s[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(u.lastIndex=0,t=t.slice(-1*e.length+r);(s=u.exec(t))!=null;){if(o=s[1]||s[2]||s[3]||s[4]||s[5]||s[6],!o)continue;if(l=[...o].length,s[3]||s[4]){c+=l;continue}else if((s[5]||s[6])&&r%3&&!((r+l)%3)){p+=l;continue}if(c-=l,c>0)continue;l=Math.min(l,l+c+p);let d=[...s[0]][0].length,g=e.slice(0,r+s.index+d+l);if(Math.min(r,l)%2){let f=g.slice(1,-1);return{type:"em",raw:g,text:f,tokens:this.lexer.inlineTokens(f)}}let x=g.slice(2,-2);return{type:"strong",raw:g,text:x,tokens:this.lexer.inlineTokens(x)}}}}codespan(e){let t=this.rules.inline.code.exec(e);if(t){let n=t[2].replace(this.rules.other.newLineCharGlobal," "),s=this.rules.other.nonSpaceChar.test(n),i=this.rules.other.startingSpaceChar.test(n)&&this.rules.other.endingSpaceChar.test(n);return s&&i&&(n=n.substring(1,n.length-1)),{type:"codespan",raw:t[0],text:n}}}br(e){let t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}del(e){let t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2])}}autolink(e){let t=this.rules.inline.autolink.exec(e);if(t){let n,s;return t[2]==="@"?(n=t[1],s="mailto:"+n):(n=t[1],s=n),{type:"link",raw:t[0],text:n,href:s,tokens:[{type:"text",raw:n,text:n}]}}}url(e){let t;if(t=this.rules.inline.url.exec(e)){let n,s;if(t[2]==="@")n=t[0],s="mailto:"+n;else{let i;do i=t[0],t[0]=this.rules.inline._backpedal.exec(t[0])?.[0]??"";while(i!==t[0]);n=t[0],t[1]==="www."?s="http://"+t[0]:s=t[0]}return{type:"link",raw:t[0],text:n,href:s,tokens:[{type:"text",raw:n,text:n}]}}}inlineText(e){let t=this.rules.inline.text.exec(e);if(t){let n=this.lexer.state.inRawBlock;return{type:"text",raw:t[0],text:t[0],escaped:n}}}};var b=class a{tokens;options;state;tokenizer;inlineQueue;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||w,this.options.tokenizer=this.options.tokenizer||new S,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let t={other:m,block:O.normal,inline:P.normal};this.options.pedantic?(t.block=O.pedantic,t.inline=P.pedantic):this.options.gfm&&(t.block=O.gfm,this.options.breaks?t.inline=P.breaks:t.inline=P.gfm),this.tokenizer.rules=t}static get rules(){return{block:O,inline:P}}static lex(e,t){return new a(t).lex(e)}static lexInline(e,t){return new a(t).inlineTokens(e)}lex(e){e=e.replace(m.carriageReturn,`
38
+ `),this.blockTokens(e,this.tokens);for(let t=0;t<this.inlineQueue.length;t++){let n=this.inlineQueue[t];this.inlineTokens(n.src,n.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(e,t=[],n=!1){for(this.options.pedantic&&(e=e.replace(m.tabCharGlobal," ").replace(m.spaceLine,""));e;){let s;if(this.options.extensions?.block?.some(r=>(s=r.call({lexer:this},e,t))?(e=e.substring(s.raw.length),t.push(s),!0):!1))continue;if(s=this.tokenizer.space(e)){e=e.substring(s.raw.length);let r=t.at(-1);s.raw.length===1&&r!==void 0?r.raw+=`
39
+ `:t.push(s);continue}if(s=this.tokenizer.code(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="paragraph"||r?.type==="text"?(r.raw+=`
40
+ `+s.raw,r.text+=`
41
+ `+s.text,this.inlineQueue.at(-1).src=r.text):t.push(s);continue}if(s=this.tokenizer.fences(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.heading(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.hr(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.blockquote(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.list(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.html(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.def(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="paragraph"||r?.type==="text"?(r.raw+=`
42
+ `+s.raw,r.text+=`
43
+ `+s.raw,this.inlineQueue.at(-1).src=r.text):this.tokens.links[s.tag]||(this.tokens.links[s.tag]={href:s.href,title:s.title});continue}if(s=this.tokenizer.table(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.lheading(e)){e=e.substring(s.raw.length),t.push(s);continue}let i=e;if(this.options.extensions?.startBlock){let r=1/0,o=e.slice(1),l;this.options.extensions.startBlock.forEach(c=>{l=c.call({lexer:this},o),typeof l=="number"&&l>=0&&(r=Math.min(r,l))}),r<1/0&&r>=0&&(i=e.substring(0,r+1))}if(this.state.top&&(s=this.tokenizer.paragraph(i))){let r=t.at(-1);n&&r?.type==="paragraph"?(r.raw+=`
44
+ `+s.raw,r.text+=`
45
+ `+s.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=r.text):t.push(s),n=i.length!==e.length,e=e.substring(s.raw.length);continue}if(s=this.tokenizer.text(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="text"?(r.raw+=`
46
+ `+s.raw,r.text+=`
47
+ `+s.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=r.text):t.push(s);continue}if(e){let r="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(r);break}else throw new Error(r)}}return this.state.top=!0,t}inline(e,t=[]){return this.inlineQueue.push({src:e,tokens:t}),t}inlineTokens(e,t=[]){let n=e,s=null;if(this.tokens.links){let o=Object.keys(this.tokens.links);if(o.length>0)for(;(s=this.tokenizer.rules.inline.reflinkSearch.exec(n))!=null;)o.includes(s[0].slice(s[0].lastIndexOf("[")+1,-1))&&(n=n.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(s=this.tokenizer.rules.inline.anyPunctuation.exec(n))!=null;)n=n.slice(0,s.index)+"++"+n.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);for(;(s=this.tokenizer.rules.inline.blockSkip.exec(n))!=null;)n=n.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);let i=!1,r="";for(;e;){i||(r=""),i=!1;let o;if(this.options.extensions?.inline?.some(c=>(o=c.call({lexer:this},e,t))?(e=e.substring(o.raw.length),t.push(o),!0):!1))continue;if(o=this.tokenizer.escape(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.tag(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.link(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.reflink(e,this.tokens.links)){e=e.substring(o.raw.length);let c=t.at(-1);o.type==="text"&&c?.type==="text"?(c.raw+=o.raw,c.text+=o.text):t.push(o);continue}if(o=this.tokenizer.emStrong(e,n,r)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.codespan(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.br(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.del(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.autolink(e)){e=e.substring(o.raw.length),t.push(o);continue}if(!this.state.inLink&&(o=this.tokenizer.url(e))){e=e.substring(o.raw.length),t.push(o);continue}let l=e;if(this.options.extensions?.startInline){let c=1/0,p=e.slice(1),u;this.options.extensions.startInline.forEach(d=>{u=d.call({lexer:this},p),typeof u=="number"&&u>=0&&(c=Math.min(c,u))}),c<1/0&&c>=0&&(l=e.substring(0,c+1))}if(o=this.tokenizer.inlineText(l)){e=e.substring(o.raw.length),o.raw.slice(-1)!=="_"&&(r=o.raw.slice(-1)),i=!0;let c=t.at(-1);c?.type==="text"?(c.raw+=o.raw,c.text+=o.text):t.push(o);continue}if(e){let c="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(c);break}else throw new Error(c)}}return t}};var $=class{options;parser;constructor(e){this.options=e||w}space(e){return""}code({text:e,lang:t,escaped:n}){let s=(t||"").match(m.notSpaceStart)?.[0],i=e.replace(m.endingNewline,"")+`
48
+ `;return s?'<pre><code class="language-'+R(s)+'">'+(n?i:R(i,!0))+`</code></pre>
49
+ `:"<pre><code>"+(n?i:R(i,!0))+`</code></pre>
50
+ `}blockquote({tokens:e}){return`<blockquote>
51
+ ${this.parser.parse(e)}</blockquote>
52
+ `}html({text:e}){return e}heading({tokens:e,depth:t}){return`<h${t}>${this.parser.parseInline(e)}</h${t}>
53
+ `}hr(e){return`<hr>
54
+ `}list(e){let t=e.ordered,n=e.start,s="";for(let o=0;o<e.items.length;o++){let l=e.items[o];s+=this.listitem(l)}let i=t?"ol":"ul",r=t&&n!==1?' start="'+n+'"':"";return"<"+i+r+`>
55
+ `+s+"</"+i+`>
56
+ `}listitem(e){let t="";if(e.task){let n=this.checkbox({checked:!!e.checked});e.loose?e.tokens[0]?.type==="paragraph"?(e.tokens[0].text=n+" "+e.tokens[0].text,e.tokens[0].tokens&&e.tokens[0].tokens.length>0&&e.tokens[0].tokens[0].type==="text"&&(e.tokens[0].tokens[0].text=n+" "+R(e.tokens[0].tokens[0].text),e.tokens[0].tokens[0].escaped=!0)):e.tokens.unshift({type:"text",raw:n+" ",text:n+" ",escaped:!0}):t+=n+" "}return t+=this.parser.parse(e.tokens,!!e.loose),`<li>${t}</li>
57
+ `}checkbox({checked:e}){return"<input "+(e?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph({tokens:e}){return`<p>${this.parser.parseInline(e)}</p>
58
+ `}table(e){let t="",n="";for(let i=0;i<e.header.length;i++)n+=this.tablecell(e.header[i]);t+=this.tablerow({text:n});let s="";for(let i=0;i<e.rows.length;i++){let r=e.rows[i];n="";for(let o=0;o<r.length;o++)n+=this.tablecell(r[o]);s+=this.tablerow({text:n})}return s&&(s=`<tbody>${s}</tbody>`),`<table>
59
+ <thead>
60
+ `+t+`</thead>
61
+ `+s+`</table>
62
+ `}tablerow({text:e}){return`<tr>
63
+ ${e}</tr>
64
+ `}tablecell(e){let t=this.parser.parseInline(e.tokens),n=e.header?"th":"td";return(e.align?`<${n} align="${e.align}">`:`<${n}>`)+t+`</${n}>
65
+ `}strong({tokens:e}){return`<strong>${this.parser.parseInline(e)}</strong>`}em({tokens:e}){return`<em>${this.parser.parseInline(e)}</em>`}codespan({text:e}){return`<code>${R(e,!0)}</code>`}br(e){return"<br>"}del({tokens:e}){return`<del>${this.parser.parseInline(e)}</del>`}link({href:e,title:t,tokens:n}){let s=this.parser.parseInline(n),i=J(e);if(i===null)return s;e=i;let r='<a href="'+e+'"';return t&&(r+=' title="'+R(t)+'"'),r+=">"+s+"</a>",r}image({href:e,title:t,text:n,tokens:s}){s&&(n=this.parser.parseInline(s,this.parser.textRenderer));let i=J(e);if(i===null)return R(n);e=i;let r=`<img src="${e}" alt="${n}"`;return t&&(r+=` title="${R(t)}"`),r+=">",r}text(e){return"tokens"in e&&e.tokens?this.parser.parseInline(e.tokens):"escaped"in e&&e.escaped?e.text:R(e.text)}};var _=class{strong({text:e}){return e}em({text:e}){return e}codespan({text:e}){return e}del({text:e}){return e}html({text:e}){return e}text({text:e}){return e}link({text:e}){return""+e}image({text:e}){return""+e}br(){return""}};var T=class a{options;renderer;textRenderer;constructor(e){this.options=e||w,this.options.renderer=this.options.renderer||new $,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new _}static parse(e,t){return new a(t).parse(e)}static parseInline(e,t){return new a(t).parseInline(e)}parse(e,t=!0){let n="";for(let s=0;s<e.length;s++){let i=e[s];if(this.options.extensions?.renderers?.[i.type]){let o=i,l=this.options.extensions.renderers[o.type].call({parser:this},o);if(l!==!1||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(o.type)){n+=l||"";continue}}let r=i;switch(r.type){case"space":{n+=this.renderer.space(r);continue}case"hr":{n+=this.renderer.hr(r);continue}case"heading":{n+=this.renderer.heading(r);continue}case"code":{n+=this.renderer.code(r);continue}case"table":{n+=this.renderer.table(r);continue}case"blockquote":{n+=this.renderer.blockquote(r);continue}case"list":{n+=this.renderer.list(r);continue}case"html":{n+=this.renderer.html(r);continue}case"paragraph":{n+=this.renderer.paragraph(r);continue}case"text":{let o=r,l=this.renderer.text(o);for(;s+1<e.length&&e[s+1].type==="text";)o=e[++s],l+=`
66
+ `+this.renderer.text(o);t?n+=this.renderer.paragraph({type:"paragraph",raw:l,text:l,tokens:[{type:"text",raw:l,text:l,escaped:!0}]}):n+=l;continue}default:{let o='Token with "'+r.type+'" type was not found.';if(this.options.silent)return console.error(o),"";throw new Error(o)}}}return n}parseInline(e,t=this.renderer){let n="";for(let s=0;s<e.length;s++){let i=e[s];if(this.options.extensions?.renderers?.[i.type]){let o=this.options.extensions.renderers[i.type].call({parser:this},i);if(o!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(i.type)){n+=o||"";continue}}let r=i;switch(r.type){case"escape":{n+=t.text(r);break}case"html":{n+=t.html(r);break}case"link":{n+=t.link(r);break}case"image":{n+=t.image(r);break}case"strong":{n+=t.strong(r);break}case"em":{n+=t.em(r);break}case"codespan":{n+=t.codespan(r);break}case"br":{n+=t.br(r);break}case"del":{n+=t.del(r);break}case"text":{n+=t.text(r);break}default:{let o='Token with "'+r.type+'" type was not found.';if(this.options.silent)return console.error(o),"";throw new Error(o)}}}return n}};var L=class{options;block;constructor(e){this.options=e||w}static passThroughHooks=new Set(["preprocess","postprocess","processAllTokens"]);preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}provideLexer(){return this.block?b.lex:b.lexInline}provideParser(){return this.block?T.parse:T.parseInline}};var B=class{defaults=M();options=this.setOptions;parse=this.parseMarkdown(!0);parseInline=this.parseMarkdown(!1);Parser=T;Renderer=$;TextRenderer=_;Lexer=b;Tokenizer=S;Hooks=L;constructor(...e){this.use(...e)}walkTokens(e,t){let n=[];for(let s of e)switch(n=n.concat(t.call(this,s)),s.type){case"table":{let i=s;for(let r of i.header)n=n.concat(this.walkTokens(r.tokens,t));for(let r of i.rows)for(let o of r)n=n.concat(this.walkTokens(o.tokens,t));break}case"list":{let i=s;n=n.concat(this.walkTokens(i.items,t));break}default:{let i=s;this.defaults.extensions?.childTokens?.[i.type]?this.defaults.extensions.childTokens[i.type].forEach(r=>{let o=i[r].flat(1/0);n=n.concat(this.walkTokens(o,t))}):i.tokens&&(n=n.concat(this.walkTokens(i.tokens,t)))}}return n}use(...e){let t=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(n=>{let s={...n};if(s.async=this.defaults.async||s.async||!1,n.extensions&&(n.extensions.forEach(i=>{if(!i.name)throw new Error("extension name required");if("renderer"in i){let r=t.renderers[i.name];r?t.renderers[i.name]=function(...o){let l=i.renderer.apply(this,o);return l===!1&&(l=r.apply(this,o)),l}:t.renderers[i.name]=i.renderer}if("tokenizer"in i){if(!i.level||i.level!=="block"&&i.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let r=t[i.level];r?r.unshift(i.tokenizer):t[i.level]=[i.tokenizer],i.start&&(i.level==="block"?t.startBlock?t.startBlock.push(i.start):t.startBlock=[i.start]:i.level==="inline"&&(t.startInline?t.startInline.push(i.start):t.startInline=[i.start]))}"childTokens"in i&&i.childTokens&&(t.childTokens[i.name]=i.childTokens)}),s.extensions=t),n.renderer){let i=this.defaults.renderer||new $(this.defaults);for(let r in n.renderer){if(!(r in i))throw new Error(`renderer '${r}' does not exist`);if(["options","parser"].includes(r))continue;let o=r,l=n.renderer[o],c=i[o];i[o]=(...p)=>{let u=l.apply(i,p);return u===!1&&(u=c.apply(i,p)),u||""}}s.renderer=i}if(n.tokenizer){let i=this.defaults.tokenizer||new S(this.defaults);for(let r in n.tokenizer){if(!(r in i))throw new Error(`tokenizer '${r}' does not exist`);if(["options","rules","lexer"].includes(r))continue;let o=r,l=n.tokenizer[o],c=i[o];i[o]=(...p)=>{let u=l.apply(i,p);return u===!1&&(u=c.apply(i,p)),u}}s.tokenizer=i}if(n.hooks){let i=this.defaults.hooks||new L;for(let r in n.hooks){if(!(r in i))throw new Error(`hook '${r}' does not exist`);if(["options","block"].includes(r))continue;let o=r,l=n.hooks[o],c=i[o];L.passThroughHooks.has(r)?i[o]=p=>{if(this.defaults.async)return Promise.resolve(l.call(i,p)).then(d=>c.call(i,d));let u=l.call(i,p);return c.call(i,u)}:i[o]=(...p)=>{let u=l.apply(i,p);return u===!1&&(u=c.apply(i,p)),u}}s.hooks=i}if(n.walkTokens){let i=this.defaults.walkTokens,r=n.walkTokens;s.walkTokens=function(o){let l=[];return l.push(r.call(this,o)),i&&(l=l.concat(i.call(this,o))),l}}this.defaults={...this.defaults,...s}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,t){return b.lex(e,t??this.defaults)}parser(e,t){return T.parse(e,t??this.defaults)}parseMarkdown(e){return(n,s)=>{let i={...s},r={...this.defaults,...i},o=this.onError(!!r.silent,!!r.async);if(this.defaults.async===!0&&i.async===!1)return o(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof n>"u"||n===null)return o(new Error("marked(): input parameter is undefined or null"));if(typeof n!="string")return o(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(n)+", string expected"));r.hooks&&(r.hooks.options=r,r.hooks.block=e);let l=r.hooks?r.hooks.provideLexer():e?b.lex:b.lexInline,c=r.hooks?r.hooks.provideParser():e?T.parse:T.parseInline;if(r.async)return Promise.resolve(r.hooks?r.hooks.preprocess(n):n).then(p=>l(p,r)).then(p=>r.hooks?r.hooks.processAllTokens(p):p).then(p=>r.walkTokens?Promise.all(this.walkTokens(p,r.walkTokens)).then(()=>p):p).then(p=>c(p,r)).then(p=>r.hooks?r.hooks.postprocess(p):p).catch(o);try{r.hooks&&(n=r.hooks.preprocess(n));let p=l(n,r);r.hooks&&(p=r.hooks.processAllTokens(p)),r.walkTokens&&this.walkTokens(p,r.walkTokens);let u=c(p,r);return r.hooks&&(u=r.hooks.postprocess(u)),u}catch(p){return o(p)}}}onError(e,t){return n=>{if(n.message+=`
67
+ Please report this to https://github.com/markedjs/marked.`,e){let s="<p>An error occurred:</p><pre>"+R(n.message+"",!0)+"</pre>";return t?Promise.resolve(s):s}if(t)return Promise.reject(n);throw n}}};var z=new B;function k(a,e){return z.parse(a,e)}k.options=k.setOptions=function(a){return z.setOptions(a),k.defaults=z.defaults,H(k.defaults),k};k.getDefaults=M;k.defaults=w;k.use=function(...a){return z.use(...a),k.defaults=z.defaults,H(k.defaults),k};k.walkTokens=function(a,e){return z.walkTokens(a,e)};k.parseInline=z.parseInline;k.Parser=T;k.parser=T.parse;k.Renderer=$;k.TextRenderer=_;k.Lexer=b;k.lexer=b.lex;k.Tokenizer=S;k.Hooks=L;k.parse=k;var Dt=k.options,Zt=k.setOptions,Gt=k.use,Ht=k.walkTokens,Nt=k.parseInline,jt=k,Ft=T.parse,Qt=b.lex;export{L as Hooks,b as Lexer,B as Marked,T as Parser,$ as Renderer,_ as TextRenderer,S as Tokenizer,w as defaults,M as getDefaults,Qt as lexer,k as marked,Dt as options,jt as parse,Nt as parseInline,Ft as parser,Zt as setOptions,Gt as use,Ht as walkTokens};
2581
68
  //# sourceMappingURL=marked.esm.js.map