@yozora/tokenizer-list 2.2.0 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  <header>
4
4
  <h1 align="center">
5
- <a href="https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/list#readme">@yozora/tokenizer-list</a>
5
+ <a href="https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/list#readme">@yozora/tokenizer-list</a>
6
6
  </h1>
7
7
  <div align="center">
8
8
  <a href="https://www.npmjs.com/package/@yozora/tokenizer-list">
@@ -53,35 +53,34 @@
53
53
 
54
54
  <!-- :end -->
55
55
 
56
- [@yozora/tokenizer-list] produce [List][node-type] (with [ListItem][node-type:list-item] as children) type nodes.
57
- See [documentation][docpage] for details.
56
+ [@yozora/tokenizer-list] produce [List][node-type] (with [ListItem][node-type:list-item] as
57
+ children) type nodes. See [documentation][docpage] for details.
58
58
 
59
59
  <!-- :begin use tokenizer/usage -->
60
60
 
61
61
  ## Install
62
62
 
63
- * npm
63
+ - npm
64
64
 
65
65
  ```bash
66
66
  npm install --save @yozora/tokenizer-list
67
67
  ```
68
68
 
69
- * yarn
69
+ - yarn
70
70
 
71
71
  ```bash
72
72
  yarn add @yozora/tokenizer-list
73
73
  ```
74
74
 
75
-
76
75
  ## Usage
77
76
 
78
- [@yozora/tokenizer-list][] has been integrated into [@yozora/parser][] / [@yozora/parser-gfm-ex][] / [@yozora/parser-gfm][],
79
- so you can use `YozoraParser` / `GfmExParser` / `GfmParser` directly.
77
+ [@yozora/tokenizer-list][] has been integrated into [@yozora/parser][] / [@yozora/parser-gfm-ex][] /
78
+ [@yozora/parser-gfm][], so you can use `YozoraParser` / `GfmExParser` / `GfmParser` directly.
80
79
 
81
80
  ### Basic Usage
82
81
 
83
- [@yozora/tokenizer-list][] cannot be used alone, it needs to be
84
- registered in *YastParser* as a plugin-in before it can be used.
82
+ [@yozora/tokenizer-list][] cannot be used alone, it needs to be registered in _YastParser_ as a
83
+ plugin-in before it can be used.
85
84
 
86
85
  ```typescript {4,9}
87
86
  import { DefaultParser } from '@yozora/core-parser'
@@ -213,47 +212,44 @@ a. This is an another type of ordered list item
213
212
 
214
213
  ### Options
215
214
 
216
- Name | Type | Required | Default
217
- :----------------------------------:|:-----------------:|:---------:|:--------------:
218
- `name` | `string` | `false` | `"@yozora/tokenizer-list"`
219
- `priority` | `number` | `false` | `TokenizerPriority.CONTAINING_BLOCK`
220
- `enableTaskListItem` | `boolean` | `false` | `false`
221
- `emptyItemCouldNotInterruptedTypes` | `NodeType[]` | `false` | `[ParagraphType]`
215
+ | Name | Type | Required | Default |
216
+ | :---------------------------------: | :----------: | :------: | :----------------------------------: |
217
+ | `name` | `string` | `false` | `"@yozora/tokenizer-list"` |
218
+ | `priority` | `number` | `false` | `TokenizerPriority.CONTAINING_BLOCK` |
219
+ | `enableTaskListItem` | `boolean` | `false` | `false` |
220
+ | `emptyItemCouldNotInterruptedTypes` | `NodeType[]` | `false` | `[ParagraphType]` |
222
221
 
223
- * `name`: The unique name of the tokenizer, used to bind the token it generates,
224
- to determine the tokenizer that should be called in each life cycle of the
225
- token in the entire *matching / parsing* phase.
222
+ - `name`: The unique name of the tokenizer, used to bind the token it generates, to determine the
223
+ tokenizer that should be called in each life cycle of the token in the entire _matching / parsing_
224
+ phase.
226
225
 
227
- * `priority`: Priority of the tokenizer, determine the order of processing,
228
- high priority priority execution. interruptable. In addition, in the `match-block`
229
- stage, a high-priority tokenizer can interrupt the matching process of a
230
- low-priority tokenizer.
226
+ - `priority`: Priority of the tokenizer, determine the order of processing, high priority priority
227
+ execution. interruptable. In addition, in the `match-block` stage, a high-priority tokenizer can
228
+ interrupt the matching process of a low-priority tokenizer.
231
229
 
232
- * `enableTaskListItem`: Whether to enable task list item (extension).
230
+ - `enableTaskListItem`: Whether to enable task list item (extension).
233
231
 
234
- * `emptyItemCouldNotInterruptedTypes`: Specify an array of Node types that could not be
235
- interrupted by this ITokenizer if the current list-item is empty.
232
+ - `emptyItemCouldNotInterruptedTypes`: Specify an array of Node types that could not be interrupted
233
+ by this ITokenizer if the current list-item is empty.
236
234
 
237
235
  @see https://github.github.com/gfm/#example-263
238
236
 
239
-
240
237
  <!-- :end -->
241
238
 
242
239
  ## Related
243
240
 
244
-
245
- * [@yozora/ast][]
246
- * [@yozora/parser][]
247
- * [@yozora/parser-gfm][]
248
- * [@yozora/parser-gfm-ex][]
249
- * [@yozora/react-list][]
250
- * [@yozora/react-list-item][]
251
- * [@yozora/react-markdown][]
252
- * [Live Examples][live-examples]
253
- * [List | Yozora AST][node-type]
254
- * [Documentation][docpage]
255
- * [List | Mdast][mdast-homepage]
256
- * [ListItem | Documentation][mdast-homepage:list-item]
241
+ - [@yozora/ast][]
242
+ - [@yozora/parser][]
243
+ - [@yozora/parser-gfm][]
244
+ - [@yozora/parser-gfm-ex][]
245
+ - [@yozora/react-list][]
246
+ - [@yozora/react-list-item][]
247
+ - [@yozora/react-markdown][]
248
+ - [Live Examples][live-examples]
249
+ - [List | Yozora AST][node-type]
250
+ - [Documentation][docpage]
251
+ - [List | Mdast][mdast-homepage]
252
+ - [ListItem | Documentation][mdast-homepage:list-item]
257
253
 
258
254
  [node-type]: http://yozora.guanghechen.com/docs/package/ast#list
259
255
  [node-type:list-item]: http://yozora.guanghechen.com/docs/package/ast#listitem
@@ -262,144 +258,190 @@ Name | Type | Required | Default
262
258
 
263
259
  [live-examples]: https://yozora.guanghechen.com/docs/package/tokenizer-list#live-examples
264
260
  [docpage]: https://yozora.guanghechen.com/docs/package/tokenizer-list
265
- [homepage]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/list#readme
261
+ [homepage]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/list#readme
266
262
  [gfm-spec]: https://github.github.com/gfm
267
263
  [mdast-homepage]: https://github.com/syntax-tree/mdast#list
268
264
  [mdast-homepage:list-item]: https://github.com/syntax-tree/mdast#listitem
269
-
270
- [@yozora/ast]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/ast#readme
271
- [@yozora/ast-util]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/ast-util#readme
272
- [@yozora/character]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/character#readme
273
- [@yozora/eslint-config]: https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/eslint-config#readme
274
- [@yozora/core-parser]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/core-parser#readme
275
- [@yozora/core-tokenizer]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/core-tokenizer#readme
276
- [@yozora/invariant]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/invariant#readme
277
- [@yozora/jest-for-tokenizer]: https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/jest-for-tokenizer#readme
278
- [@yozora/parser]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/parser#readme
279
- [@yozora/parser-gfm]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/parser-gfm#readme
280
- [@yozora/parser-gfm-ex]: https://github.com/yozorajs/yozora/tree/v2.2.0/packages/parser-gfm-ex#readme
281
- [@yozora/template-tokenizer]: https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/template-tokenizer#readme
282
- [@yozora/tokenizer-admonition]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/admonition#readme
283
- [@yozora/tokenizer-autolink]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/autolink#readme
284
- [@yozora/tokenizer-autolink-extension]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/autolink-extension#readme
285
- [@yozora/tokenizer-blockquote]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/blockquote#readme
286
- [@yozora/tokenizer-break]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/break#readme
287
- [@yozora/tokenizer-definition]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/definition#readme
288
- [@yozora/tokenizer-delete]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/delete#readme
289
- [@yozora/tokenizer-ecma-import]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/ecma-import#readme
290
- [@yozora/tokenizer-emphasis]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/emphasis#readme
291
- [@yozora/tokenizer-fenced-block]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/fenced-block#readme
292
- [@yozora/tokenizer-fenced-code]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/fenced-code#readme
293
- [@yozora/tokenizer-footnote]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/footnote#readme
294
- [@yozora/tokenizer-footnote-definition]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/footnote-definition#readme
295
- [@yozora/tokenizer-footnote-reference]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/footnote-reference#readme
296
- [@yozora/tokenizer-heading]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/heading#readme
297
- [@yozora/tokenizer-html-block]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/html-block#readme
298
- [@yozora/tokenizer-html-inline]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/html-inline#readme
299
- [@yozora/tokenizer-image]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/image#readme
300
- [@yozora/tokenizer-image-reference]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/image-reference#readme
301
- [@yozora/tokenizer-indented-code]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/indented-code#readme
302
- [@yozora/tokenizer-inline-code]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/inline-code#readme
303
- [@yozora/tokenizer-inline-math]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/inline-math#readme
304
- [@yozora/tokenizer-link]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/link#readme
305
- [@yozora/tokenizer-link-reference]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/link-reference#readme
306
- [@yozora/tokenizer-list]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/list#readme
307
- [@yozora/tokenizer-math]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/math#readme
308
- [@yozora/tokenizer-paragraph]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/paragraph#readme
309
- [@yozora/tokenizer-setext-heading]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/setext-heading#readme
310
- [@yozora/tokenizer-table]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/table#readme
311
- [@yozora/tokenizer-text]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/text#readme
312
- [@yozora/tokenizer-thematic-break]: https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/thematic-break#readme
313
-
314
- [@yozora/react-admonition]: https://github.com/yozorajs/yozora-react/tree/main/packages/admonition#readme
315
- [@yozora/react-blockquote]: https://github.com/yozorajs/yozora-react/tree/main/packages/blockquote#readme
316
- [@yozora/react-break]: https://github.com/yozorajs/yozora-react/tree/main/packages/break#readme
317
- [@yozora/react-delete]: https://github.com/yozorajs/yozora-react/tree/main/packages/delete#readme
318
- [@yozora/react-emphasis]: https://github.com/yozorajs/yozora-react/tree/main/packages/emphasis#readme
319
- [@yozora/react-code]: https://github.com/yozorajs/yozora-react/tree/main/packages/code#readme
320
- [@yozora/react-code-live]: https://github.com/yozorajs/yozora-react/tree/main/packages/code-live#readme
321
- [@yozora/react-footnote-definitions]: https://github.com/yozorajs/yozora-react/tree/main/packages/footnote-definitions#readme
322
- [@yozora/react-footnote-reference]: https://github.com/yozorajs/yozora-react/tree/main/packages/footnote-reference#readme
323
- [@yozora/react-heading]: https://github.com/yozorajs/yozora-react/tree/main/packages/heading#readme
324
- [@yozora/react-image]: https://github.com/yozorajs/yozora-react/tree/main/packages/image#readme
325
- [@yozora/react-inline-code]: https://github.com/yozorajs/yozora-react/tree/main/packages/inline-code#readme
326
- [@yozora/react-inline-math]: https://github.com/yozorajs/yozora-react/tree/main/packages/inline-math#readme
327
- [@yozora/react-link]: https://github.com/yozorajs/yozora-react/tree/main/packages/link#readme
328
- [@yozora/react-list]: https://github.com/yozorajs/yozora-react/tree/main/packages/list#readme
329
- [@yozora/react-list-item]: https://github.com/yozorajs/yozora-react/tree/main/packages/list-item#readme
330
- [@yozora/react-markdown]: https://github.com/yozorajs/yozora-react/tree/main/packages/markdown#readme
331
- [@yozora/react-math]: https://github.com/yozorajs/yozora-react/tree/main/packages/math#readme
332
- [@yozora/react-paragraph]: https://github.com/yozorajs/yozora-react/tree/main/packages/paragraph#readme
333
- [@yozora/react-strong]: https://github.com/yozorajs/yozora-react/tree/main/packages/strong#readme
334
- [@yozora/react-table]: https://github.com/yozorajs/yozora-react/tree/main/packages/table#readme
335
- [@yozora/react-text]: https://github.com/yozorajs/yozora-react/tree/main/packages/text#readme
336
- [@yozora/react-thematic-break]: https://github.com/yozorajs/yozora-react/tree/main/packages/thematic-break#readme
337
-
338
- [doc-live-examples/gfm]: https://yozora.guanghechen.com/docs/example/gfm
339
- [doc-@yozora/ast]: https://yozora.guanghechen.com/docs/package/ast
340
- [doc-@yozora/ast-util]: https://yozora.guanghechen.com/docs/package/ast-util
341
- [doc-@yozora/core-parser]: https://yozora.guanghechen.com/docs/package/core-parser
342
- [doc-@yozora/core-tokenizer]: https://yozora.guanghechen.com/docs/package/core-tokenizer
343
- [doc-@yozora/parser]: https://yozora.guanghechen.com/docs/package/parser
344
- [doc-@yozora/parser-gfm]: https://yozora.guanghechen.com/docs/package/parser-gfm
345
- [doc-@yozora/parser-gfm-ex]: https://yozora.guanghechen.com/docs/package/parser-gfm-ex
346
- [doc-@yozora/tokenizer-admonition]: https://yozora.guanghechen.com/docs/package/tokenizer-admonition
347
- [doc-@yozora/tokenizer-autolink]: https://yozora.guanghechen.com/docs/package/tokenizer-autolink
348
- [doc-@yozora/tokenizer-autolink-extension]: https://yozora.guanghechen.com/docs/package/tokenizer-autolink-extension
349
- [doc-@yozora/tokenizer-blockquote]: https://yozora.guanghechen.com/docs/package/tokenizer-blockquote
350
- [doc-@yozora/tokenizer-break]: https://yozora.guanghechen.com/docs/package/tokenizer-break
351
- [doc-@yozora/tokenizer-delete]: https://yozora.guanghechen.com/docs/package/tokenizer-delete
352
- [doc-@yozora/tokenizer-emphasis]: https://yozora.guanghechen.com/docs/package/tokenizer-emphasis
353
- [doc-@yozora/tokenizer-fenced-code]: https://yozora.guanghechen.com/docs/package/tokenizer-fenced-code
354
- [doc-@yozora/tokenizer-heading]: https://yozora.guanghechen.com/docs/package/tokenizer-heading
355
- [doc-@yozora/tokenizer-html-block]: https://yozora.guanghechen.com/docs/package/tokenizer-html-block
356
- [doc-@yozora/tokenizer-html-inline]: https://yozora.guanghechen.com/docs/package/tokenizer-html-inline
357
- [doc-@yozora/tokenizer-image]: https://yozora.guanghechen.com/docs/package/tokenizer-image
358
- [doc-@yozora/tokenizer-image-reference]: https://yozora.guanghechen.com/docs/package/tokenizer-image-reference
359
- [doc-@yozora/tokenizer-indented-code]: https://yozora.guanghechen.com/docs/package/tokenizer-indented-code
360
- [doc-@yozora/tokenizer-inline-code]: https://yozora.guanghechen.com/docs/package/tokenizer-inline-code
361
- [doc-@yozora/tokenizer-inline-math]: https://yozora.guanghechen.com/docs/package/tokenizer-inline-math
362
- [doc-@yozora/tokenizer-link]: https://yozora.guanghechen.com/docs/package/tokenizer-link
363
- [doc-@yozora/tokenizer-definition]: https://yozora.guanghechen.com/docs/package/tokenizer-definition
364
- [doc-@yozora/tokenizer-link-reference]: https://yozora.guanghechen.com/docs/package/tokenizer-link-reference
365
- [doc-@yozora/tokenizer-list]: https://yozora.guanghechen.com/docs/package/tokenizer-list
366
- [doc-@yozora/tokenizer-math]: https://yozora.guanghechen.com/docs/package/tokenizer-math
367
- [doc-@yozora/tokenizer-paragraph]: https://yozora.guanghechen.com/docs/package/tokenizer-paragraph
368
- [doc-@yozora/tokenizer-setext-heading]: https://yozora.guanghechen.com/docs/package/tokenizer-setext-heading
369
- [doc-@yozora/tokenizer-table]: https://yozora.guanghechen.com/docs/package/tokenizer-table
370
- [doc-@yozora/tokenizer-text]: https://yozora.guanghechen.com/docs/package/tokenizer-text
371
- [doc-@yozora/tokenizer-thematic-break]: https://yozora.guanghechen.com/docs/package/tokenizer-thematic-break
372
- [doc-@yozora/jest-for-tokenizer]: https://yozora.guanghechen.com/docs/package/jest-for-tokenizer
373
- [doc-@yozora/parser-gfm]: https://yozora.guanghechen.com/docs/package/parser-gfm
374
-
375
- [gfm-atx-heading]: https://github.github.com/gfm/#atx-heading
376
- [gfm-autolink]: https://github.github.com/gfm/#autolinks
377
- [gfm-autolink-extension]: https://github.github.com/gfm/#autolinks-extension-
378
- [gfm-blockquote]: https://github.github.com/gfm/#block-quotes
379
- [gfm-bullet-list]: https://github.github.com/gfm/#bullet-list
380
- [gfm-delete]: https://github.github.com/gfm/#strikethrough-extension-
381
- [gfm-emphasis]: https://github.github.com/gfm/#can-open-emphasis
382
- [gfm-fenced-code]: https://github.github.com/gfm/#fenced-code-block
383
- [gfm-hard-line-break]: https://github.github.com/gfm/#hard-line-break
384
- [gfm-html-block]: https://github.github.com/gfm/#html-block
385
- [gfm-html-inline]: https://github.github.com/gfm/#raw-html
386
- [gfm-image]: https://github.github.com/gfm/#images
387
- [gfm-image-reference]: https://github.github.com/gfm/#example-590
388
- [gfm-indented-code]: https://github.github.com/gfm/#indented-code-block
389
- [gfm-inline-code]: https://github.github.com/gfm/#code-span
390
- [gfm-link]: https://github.github.com/gfm/#inline-link
391
- [gfm-definition]: https://github.github.com/gfm/#link-reference-definition
392
- [gfm-link-reference]: https://github.github.com/gfm/#reference-link
393
- [gfm-list]: https://github.github.com/gfm/#lists
394
- [gfm-list-item]: https://github.github.com/gfm/#list-items
395
- [gfm-list-task-item]: https://github.github.com/gfm/#task-list-items-extension-
396
- [gfm-paragraph]: https://github.github.com/gfm/#paragraph
397
- [gfm-setext-heading]: https://github.github.com/gfm/#setext-heading
398
- [gfm-soft-line-break]: https://github.github.com/gfm/#soft-line-breaks
399
- [gfm-strong]: https://github.github.com/gfm/#can-open-strong-emphasis
400
- [gfm-tab]: https://github.github.com/gfm/#tabs
401
- [gfm-table]: https://github.github.com/gfm/#table
402
- [gfm-text]: https://github.github.com/gfm/#soft-line-breaks
403
- [gfm-thematic-break]: https://github.github.com/gfm/#thematic-break
265
+ [@yozora/ast]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/ast#readme
266
+ [@yozora/ast-util]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/ast-util#readme
267
+ [@yozora/character]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/character#readme
268
+ [@yozora/eslint-config]:
269
+ https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/eslint-config#readme
270
+ [@yozora/core-parser]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/core-parser#readme
271
+ [@yozora/core-tokenizer]:
272
+ https://github.com/yozorajs/yozora/tree/v2.3.1/packages/core-tokenizer#readme
273
+ [@yozora/invariant]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/invariant#readme
274
+ [@yozora/jest-for-tokenizer]:
275
+ https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/jest-for-tokenizer#readme
276
+ [@yozora/parser]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/parser#readme
277
+ [@yozora/parser-gfm]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/parser-gfm#readme
278
+ [@yozora/parser-gfm-ex]:
279
+ https://github.com/yozorajs/yozora/tree/v2.3.1/packages/parser-gfm-ex#readme
280
+ [@yozora/template-tokenizer]:
281
+ https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/template-tokenizer#readme
282
+ [@yozora/tokenizer-admonition]:
283
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/admonition#readme
284
+ [@yozora/tokenizer-autolink]:
285
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/autolink#readme
286
+ [@yozora/tokenizer-autolink-extension]:
287
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/autolink-extension#readme
288
+ [@yozora/tokenizer-blockquote]:
289
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/blockquote#readme
290
+ [@yozora/tokenizer-break]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/break#readme
291
+ [@yozora/tokenizer-definition]:
292
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/definition#readme
293
+ [@yozora/tokenizer-delete]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/delete#readme
294
+ [@yozora/tokenizer-ecma-import]:
295
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/ecma-import#readme
296
+ [@yozora/tokenizer-emphasis]:
297
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/emphasis#readme
298
+ [@yozora/tokenizer-fenced-block]:
299
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/fenced-block#readme
300
+ [@yozora/tokenizer-fenced-code]:
301
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/fenced-code#readme
302
+ [@yozora/tokenizer-footnote]:
303
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/footnote#readme
304
+ [@yozora/tokenizer-footnote-definition]:
305
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/footnote-definition#readme
306
+ [@yozora/tokenizer-footnote-reference]:
307
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/footnote-reference#readme
308
+ [@yozora/tokenizer-heading]:
309
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/heading#readme
310
+ [@yozora/tokenizer-html-block]:
311
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/html-block#readme
312
+ [@yozora/tokenizer-html-inline]:
313
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/html-inline#readme
314
+ [@yozora/tokenizer-image]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/image#readme
315
+ [@yozora/tokenizer-image-reference]:
316
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/image-reference#readme
317
+ [@yozora/tokenizer-indented-code]:
318
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/indented-code#readme
319
+ [@yozora/tokenizer-inline-code]:
320
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/inline-code#readme
321
+ [@yozora/tokenizer-inline-math]:
322
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/inline-math#readme
323
+ [@yozora/tokenizer-link]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/link#readme
324
+ [@yozora/tokenizer-link-reference]:
325
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/link-reference#readme
326
+ [@yozora/tokenizer-list]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/list#readme
327
+ [@yozora/tokenizer-math]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/math#readme
328
+ [@yozora/tokenizer-paragraph]:
329
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/paragraph#readme
330
+ [@yozora/tokenizer-setext-heading]:
331
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/setext-heading#readme
332
+ [@yozora/tokenizer-table]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/table#readme
333
+ [@yozora/tokenizer-text]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/text#readme
334
+ [@yozora/tokenizer-thematic-break]:
335
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/thematic-break#readme
336
+ [@yozora/react-admonition]:
337
+ https://github.com/yozorajs/yozora-react/tree/main/packages/admonition#readme
338
+ [@yozora/react-blockquote]:
339
+ https://github.com/yozorajs/yozora-react/tree/main/packages/blockquote#readme
340
+ [@yozora/react-break]: https://github.com/yozorajs/yozora-react/tree/main/packages/break#readme
341
+ [@yozora/react-delete]: https://github.com/yozorajs/yozora-react/tree/main/packages/delete#readme
342
+ [@yozora/react-emphasis]:
343
+ https://github.com/yozorajs/yozora-react/tree/main/packages/emphasis#readme
344
+ [@yozora/react-code]: https://github.com/yozorajs/yozora-react/tree/main/packages/code#readme
345
+ [@yozora/react-code-live]:
346
+ https://github.com/yozorajs/yozora-react/tree/main/packages/code-live#readme
347
+ [@yozora/react-footnote-definitions]:
348
+ https://github.com/yozorajs/yozora-react/tree/main/packages/footnote-definitions#readme
349
+ [@yozora/react-footnote-reference]:
350
+ https://github.com/yozorajs/yozora-react/tree/main/packages/footnote-reference#readme
351
+ [@yozora/react-heading]: https://github.com/yozorajs/yozora-react/tree/main/packages/heading#readme
352
+ [@yozora/react-image]: https://github.com/yozorajs/yozora-react/tree/main/packages/image#readme
353
+ [@yozora/react-inline-code]:
354
+ https://github.com/yozorajs/yozora-react/tree/main/packages/inline-code#readme
355
+ [@yozora/react-inline-math]:
356
+ https://github.com/yozorajs/yozora-react/tree/main/packages/inline-math#readme
357
+ [@yozora/react-link]: https://github.com/yozorajs/yozora-react/tree/main/packages/link#readme
358
+ [@yozora/react-list]: https://github.com/yozorajs/yozora-react/tree/main/packages/list#readme
359
+ [@yozora/react-list-item]:
360
+ https://github.com/yozorajs/yozora-react/tree/main/packages/list-item#readme
361
+ [@yozora/react-markdown]:
362
+ https://github.com/yozorajs/yozora-react/tree/main/packages/markdown#readme
363
+ [@yozora/react-math]: https://github.com/yozorajs/yozora-react/tree/main/packages/math#readme
364
+ [@yozora/react-paragraph]:
365
+ https://github.com/yozorajs/yozora-react/tree/main/packages/paragraph#readme
366
+ [@yozora/react-strong]: https://github.com/yozorajs/yozora-react/tree/main/packages/strong#readme
367
+ [@yozora/react-table]: https://github.com/yozorajs/yozora-react/tree/main/packages/table#readme
368
+ [@yozora/react-text]: https://github.com/yozorajs/yozora-react/tree/main/packages/text#readme
369
+ [@yozora/react-thematic-break]:
370
+ https://github.com/yozorajs/yozora-react/tree/main/packages/thematic-break#readme
371
+ [doc-live-examples/gfm]: https://yozora.guanghechen.com/docs/example/gfm
372
+ [doc-@yozora/ast]: https://yozora.guanghechen.com/docs/package/ast
373
+ [doc-@yozora/ast-util]: https://yozora.guanghechen.com/docs/package/ast-util
374
+ [doc-@yozora/core-parser]: https://yozora.guanghechen.com/docs/package/core-parser
375
+ [doc-@yozora/core-tokenizer]: https://yozora.guanghechen.com/docs/package/core-tokenizer
376
+ [doc-@yozora/parser]: https://yozora.guanghechen.com/docs/package/parser
377
+ [doc-@yozora/parser-gfm]: https://yozora.guanghechen.com/docs/package/parser-gfm
378
+ [doc-@yozora/parser-gfm-ex]: https://yozora.guanghechen.com/docs/package/parser-gfm-ex
379
+ [doc-@yozora/tokenizer-admonition]: https://yozora.guanghechen.com/docs/package/tokenizer-admonition
380
+ [doc-@yozora/tokenizer-autolink]: https://yozora.guanghechen.com/docs/package/tokenizer-autolink
381
+ [doc-@yozora/tokenizer-autolink-extension]:
382
+ https://yozora.guanghechen.com/docs/package/tokenizer-autolink-extension
383
+ [doc-@yozora/tokenizer-blockquote]: https://yozora.guanghechen.com/docs/package/tokenizer-blockquote
384
+ [doc-@yozora/tokenizer-break]: https://yozora.guanghechen.com/docs/package/tokenizer-break
385
+ [doc-@yozora/tokenizer-delete]: https://yozora.guanghechen.com/docs/package/tokenizer-delete
386
+ [doc-@yozora/tokenizer-emphasis]: https://yozora.guanghechen.com/docs/package/tokenizer-emphasis
387
+ [doc-@yozora/tokenizer-fenced-code]:
388
+ https://yozora.guanghechen.com/docs/package/tokenizer-fenced-code
389
+ [doc-@yozora/tokenizer-heading]: https://yozora.guanghechen.com/docs/package/tokenizer-heading
390
+ [doc-@yozora/tokenizer-html-block]: https://yozora.guanghechen.com/docs/package/tokenizer-html-block
391
+ [doc-@yozora/tokenizer-html-inline]:
392
+ https://yozora.guanghechen.com/docs/package/tokenizer-html-inline
393
+ [doc-@yozora/tokenizer-image]: https://yozora.guanghechen.com/docs/package/tokenizer-image
394
+ [doc-@yozora/tokenizer-image-reference]:
395
+ https://yozora.guanghechen.com/docs/package/tokenizer-image-reference
396
+ [doc-@yozora/tokenizer-indented-code]:
397
+ https://yozora.guanghechen.com/docs/package/tokenizer-indented-code
398
+ [doc-@yozora/tokenizer-inline-code]:
399
+ https://yozora.guanghechen.com/docs/package/tokenizer-inline-code
400
+ [doc-@yozora/tokenizer-inline-math]:
401
+ https://yozora.guanghechen.com/docs/package/tokenizer-inline-math
402
+ [doc-@yozora/tokenizer-link]: https://yozora.guanghechen.com/docs/package/tokenizer-link
403
+ [doc-@yozora/tokenizer-definition]: https://yozora.guanghechen.com/docs/package/tokenizer-definition
404
+ [doc-@yozora/tokenizer-link-reference]:
405
+ https://yozora.guanghechen.com/docs/package/tokenizer-link-reference
406
+ [doc-@yozora/tokenizer-list]: https://yozora.guanghechen.com/docs/package/tokenizer-list
407
+ [doc-@yozora/tokenizer-math]: https://yozora.guanghechen.com/docs/package/tokenizer-math
408
+ [doc-@yozora/tokenizer-paragraph]: https://yozora.guanghechen.com/docs/package/tokenizer-paragraph
409
+ [doc-@yozora/tokenizer-setext-heading]:
410
+ https://yozora.guanghechen.com/docs/package/tokenizer-setext-heading
411
+ [doc-@yozora/tokenizer-table]: https://yozora.guanghechen.com/docs/package/tokenizer-table
412
+ [doc-@yozora/tokenizer-text]: https://yozora.guanghechen.com/docs/package/tokenizer-text
413
+ [doc-@yozora/tokenizer-thematic-break]:
414
+ https://yozora.guanghechen.com/docs/package/tokenizer-thematic-break
415
+ [doc-@yozora/jest-for-tokenizer]: https://yozora.guanghechen.com/docs/package/jest-for-tokenizer
416
+ [doc-@yozora/parser-gfm]: https://yozora.guanghechen.com/docs/package/parser-gfm
417
+ [gfm-atx-heading]: https://github.github.com/gfm/#atx-heading
418
+ [gfm-autolink]: https://github.github.com/gfm/#autolinks
419
+ [gfm-autolink-extension]: https://github.github.com/gfm/#autolinks-extension-
420
+ [gfm-blockquote]: https://github.github.com/gfm/#block-quotes
421
+ [gfm-bullet-list]: https://github.github.com/gfm/#bullet-list
422
+ [gfm-delete]: https://github.github.com/gfm/#strikethrough-extension-
423
+ [gfm-emphasis]: https://github.github.com/gfm/#can-open-emphasis
424
+ [gfm-fenced-code]: https://github.github.com/gfm/#fenced-code-block
425
+ [gfm-hard-line-break]: https://github.github.com/gfm/#hard-line-break
426
+ [gfm-html-block]: https://github.github.com/gfm/#html-block
427
+ [gfm-html-inline]: https://github.github.com/gfm/#raw-html
428
+ [gfm-image]: https://github.github.com/gfm/#images
429
+ [gfm-image-reference]: https://github.github.com/gfm/#example-590
430
+ [gfm-indented-code]: https://github.github.com/gfm/#indented-code-block
431
+ [gfm-inline-code]: https://github.github.com/gfm/#code-span
432
+ [gfm-link]: https://github.github.com/gfm/#inline-link
433
+ [gfm-definition]: https://github.github.com/gfm/#link-reference-definition
434
+ [gfm-link-reference]: https://github.github.com/gfm/#reference-link
435
+ [gfm-list]: https://github.github.com/gfm/#lists
436
+ [gfm-list-item]: https://github.github.com/gfm/#list-items
437
+ [gfm-list-task-item]: https://github.github.com/gfm/#task-list-items-extension-
438
+ [gfm-paragraph]: https://github.github.com/gfm/#paragraph
439
+ [gfm-setext-heading]: https://github.github.com/gfm/#setext-heading
440
+ [gfm-soft-line-break]: https://github.github.com/gfm/#soft-line-breaks
441
+ [gfm-strong]: https://github.github.com/gfm/#can-open-strong-emphasis
442
+ [gfm-tab]: https://github.github.com/gfm/#tabs
443
+ [gfm-table]: https://github.github.com/gfm/#table
444
+ [gfm-text]: https://github.github.com/gfm/#soft-line-breaks
445
+ [gfm-thematic-break]: https://github.github.com/gfm/#thematic-break
404
446
 
405
447
  <!-- :end -->
package/lib/cjs/index.cjs CHANGED
@@ -299,3 +299,4 @@ class ListTokenizer extends coreTokenizer.BaseBlockTokenizer {
299
299
  exports.ListTokenizer = ListTokenizer;
300
300
  exports.ListTokenizerName = uniqueName;
301
301
  exports.default = ListTokenizer;
302
+ //# sourceMappingURL=index.cjs.map
package/lib/esm/index.mjs CHANGED
@@ -293,3 +293,4 @@ class ListTokenizer extends BaseBlockTokenizer {
293
293
  }
294
294
 
295
295
  export { ListTokenizer, uniqueName as ListTokenizerName, ListTokenizer as default };
296
+ //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-list",
3
- "version": "2.2.0",
3
+ "version": "2.3.1",
4
4
  "author": {
5
5
  "name": "guanghechen",
6
6
  "url": "https://github.com/guanghechen/"
@@ -10,7 +10,7 @@
10
10
  "url": "https://github.com/yozorajs/yozora.git",
11
11
  "directory": "tokenizers/list"
12
12
  },
13
- "homepage": "https://github.com/yozorajs/yozora/tree/v2.1.5/tokenizers/list",
13
+ "homepage": "https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/list",
14
14
  "type": "module",
15
15
  "exports": {
16
16
  "types": "./lib/types/index.d.ts",
@@ -33,15 +33,10 @@
33
33
  "LICENSE",
34
34
  "README.md"
35
35
  ],
36
- "scripts": {
37
- "build": "rimraf lib/ && cross-env NODE_ENV=production rollup -c ../../rollup.config.mjs",
38
- "prepublishOnly": "cross-env ROLLUP_SHOULD_SOURCEMAP=false yarn build",
39
- "test": "node --experimental-vm-modules ../../node_modules/.bin/jest --config ../../jest.config.mjs --rootDir ."
40
- },
41
36
  "dependencies": {
42
- "@yozora/ast": "^2.2.0",
43
- "@yozora/character": "^2.2.0",
44
- "@yozora/core-tokenizer": "^2.2.0"
37
+ "@yozora/ast": "^2.3.1",
38
+ "@yozora/character": "^2.3.1",
39
+ "@yozora/core-tokenizer": "^2.3.1"
45
40
  },
46
- "gitHead": "3454cd9f3b0f7ca5d105978ba042070501512dae"
41
+ "gitHead": "eaea7c3649e7e7886a1c3a85125b8c6268fdab20"
47
42
  }