@yozora/tokenizer-break 2.3.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.3.0/tokenizers/break#readme">@yozora/tokenizer-break</a>
5
+ <a href="https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/break#readme">@yozora/tokenizer-break</a>
6
6
  </h1>
7
7
  <div align="center">
8
8
  <a href="https://www.npmjs.com/package/@yozora/tokenizer-break">
@@ -53,35 +53,34 @@
53
53
 
54
54
  <!-- :end -->
55
55
 
56
- [@yozora/tokenizer-break] produce [Break][node-type] type nodes.
57
- See [documentation][docpage] for details.
56
+ [@yozora/tokenizer-break] produce [Break][node-type] type nodes. See [documentation][docpage] for
57
+ 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-break
67
67
  ```
68
68
 
69
- * yarn
69
+ - yarn
70
70
 
71
71
  ```bash
72
72
  yarn add @yozora/tokenizer-break
73
73
  ```
74
74
 
75
-
76
75
  ## Usage
77
76
 
78
- [@yozora/tokenizer-break][] 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-break][] 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-break][] cannot be used alone, it needs to be
84
- registered in *YastParser* as a plugin-in before it can be used.
82
+ [@yozora/tokenizer-break][] 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'
@@ -169,39 +168,34 @@ baz
169
168
 
170
169
  ### Options
171
170
 
172
- Name | Type | Required | Default
173
- :----------------:|:-----------:|:---------:|:--------------:
174
- `name` | `string` | `false` | `"@yozora/tokenizer-break"`
175
- `priority` | `number` | `false` | `TokenizerPriority.ATOMIC`
176
-
177
- * `name`: The unique name of the tokenizer, used to bind the token it generates,
178
- to determine the tokenizer that should be called in each life cycle of the
179
- token in the entire *matching / parsing* phase.
180
-
181
- * `priority`: Priority of the tokenizer, determine the order of processing,
182
- high priority priority execution. interruptable. In addition, in the `match-block`
183
- stage, a high-priority tokenizer can interrupt the matching process of a
184
- low-priority tokenizer.
171
+ | Name | Type | Required | Default |
172
+ | :--------: | :------: | :------: | :-------------------------: |
173
+ | `name` | `string` | `false` | `"@yozora/tokenizer-break"` |
174
+ | `priority` | `number` | `false` | `TokenizerPriority.ATOMIC` |
185
175
 
186
- **Exception:** Delimiters of type `full` are always processed before other type
187
- delimiters.
176
+ - `name`: The unique name of the tokenizer, used to bind the token it generates, to determine the
177
+ tokenizer that should be called in each life cycle of the token in the entire _matching / parsing_
178
+ phase.
188
179
 
180
+ - `priority`: Priority of the tokenizer, determine the order of processing, high priority priority
181
+ execution. interruptable. In addition, in the `match-block` stage, a high-priority tokenizer can
182
+ interrupt the matching process of a low-priority tokenizer.
189
183
 
184
+ **Exception:** Delimiters of type `full` are always processed before other type delimiters.
190
185
 
191
186
  <!-- :end -->
192
187
 
193
188
  ## Related
194
189
 
195
-
196
- * [@yozora/ast][]
197
- * [@yozora/parser][]
198
- * [@yozora/parser-gfm][]
199
- * [@yozora/parser-gfm-ex][]
200
- * [@yozora/react-break][]
201
- * [@yozora/react-markdown][]
202
- * [Live Examples][live-examples]
203
- * [Break | Yozora AST][node-type]
204
- * [Documentation][docpage]
190
+ - [@yozora/ast][]
191
+ - [@yozora/parser][]
192
+ - [@yozora/parser-gfm][]
193
+ - [@yozora/parser-gfm-ex][]
194
+ - [@yozora/react-break][]
195
+ - [@yozora/react-markdown][]
196
+ - [Live Examples][live-examples]
197
+ - [Break | Yozora AST][node-type]
198
+ - [Documentation][docpage]
205
199
 
206
200
  [node-type]: http://yozora.guanghechen.com/docs/package/ast#break
207
201
 
@@ -209,143 +203,189 @@ Name | Type | Required | Default
209
203
 
210
204
  [live-examples]: https://yozora.guanghechen.com/docs/package/tokenizer-break#live-examples
211
205
  [docpage]: https://yozora.guanghechen.com/docs/package/tokenizer-break
212
- [homepage]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/break#readme
206
+ [homepage]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/break#readme
213
207
  [gfm-spec]: https://github.github.com/gfm
214
208
  [mdast-homepage]: https://github.com/syntax-tree/mdast
215
-
216
- [@yozora/ast]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/ast#readme
217
- [@yozora/ast-util]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/ast-util#readme
218
- [@yozora/character]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/character#readme
219
- [@yozora/eslint-config]: https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/eslint-config#readme
220
- [@yozora/core-parser]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/core-parser#readme
221
- [@yozora/core-tokenizer]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/core-tokenizer#readme
222
- [@yozora/invariant]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/invariant#readme
223
- [@yozora/jest-for-tokenizer]: https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/jest-for-tokenizer#readme
224
- [@yozora/parser]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/parser#readme
225
- [@yozora/parser-gfm]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/parser-gfm#readme
226
- [@yozora/parser-gfm-ex]: https://github.com/yozorajs/yozora/tree/v2.3.0/packages/parser-gfm-ex#readme
227
- [@yozora/template-tokenizer]: https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/template-tokenizer#readme
228
- [@yozora/tokenizer-admonition]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/admonition#readme
229
- [@yozora/tokenizer-autolink]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/autolink#readme
230
- [@yozora/tokenizer-autolink-extension]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/autolink-extension#readme
231
- [@yozora/tokenizer-blockquote]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/blockquote#readme
232
- [@yozora/tokenizer-break]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/break#readme
233
- [@yozora/tokenizer-definition]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/definition#readme
234
- [@yozora/tokenizer-delete]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/delete#readme
235
- [@yozora/tokenizer-ecma-import]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/ecma-import#readme
236
- [@yozora/tokenizer-emphasis]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/emphasis#readme
237
- [@yozora/tokenizer-fenced-block]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/fenced-block#readme
238
- [@yozora/tokenizer-fenced-code]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/fenced-code#readme
239
- [@yozora/tokenizer-footnote]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/footnote#readme
240
- [@yozora/tokenizer-footnote-definition]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/footnote-definition#readme
241
- [@yozora/tokenizer-footnote-reference]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/footnote-reference#readme
242
- [@yozora/tokenizer-heading]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/heading#readme
243
- [@yozora/tokenizer-html-block]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/html-block#readme
244
- [@yozora/tokenizer-html-inline]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/html-inline#readme
245
- [@yozora/tokenizer-image]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/image#readme
246
- [@yozora/tokenizer-image-reference]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/image-reference#readme
247
- [@yozora/tokenizer-indented-code]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/indented-code#readme
248
- [@yozora/tokenizer-inline-code]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/inline-code#readme
249
- [@yozora/tokenizer-inline-math]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/inline-math#readme
250
- [@yozora/tokenizer-link]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/link#readme
251
- [@yozora/tokenizer-link-reference]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/link-reference#readme
252
- [@yozora/tokenizer-list]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/list#readme
253
- [@yozora/tokenizer-math]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/math#readme
254
- [@yozora/tokenizer-paragraph]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/paragraph#readme
255
- [@yozora/tokenizer-setext-heading]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/setext-heading#readme
256
- [@yozora/tokenizer-table]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/table#readme
257
- [@yozora/tokenizer-text]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/text#readme
258
- [@yozora/tokenizer-thematic-break]: https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/thematic-break#readme
259
-
260
- [@yozora/react-admonition]: https://github.com/yozorajs/yozora-react/tree/main/packages/admonition#readme
261
- [@yozora/react-blockquote]: https://github.com/yozorajs/yozora-react/tree/main/packages/blockquote#readme
262
- [@yozora/react-break]: https://github.com/yozorajs/yozora-react/tree/main/packages/break#readme
263
- [@yozora/react-delete]: https://github.com/yozorajs/yozora-react/tree/main/packages/delete#readme
264
- [@yozora/react-emphasis]: https://github.com/yozorajs/yozora-react/tree/main/packages/emphasis#readme
265
- [@yozora/react-code]: https://github.com/yozorajs/yozora-react/tree/main/packages/code#readme
266
- [@yozora/react-code-live]: https://github.com/yozorajs/yozora-react/tree/main/packages/code-live#readme
267
- [@yozora/react-footnote-definitions]: https://github.com/yozorajs/yozora-react/tree/main/packages/footnote-definitions#readme
268
- [@yozora/react-footnote-reference]: https://github.com/yozorajs/yozora-react/tree/main/packages/footnote-reference#readme
269
- [@yozora/react-heading]: https://github.com/yozorajs/yozora-react/tree/main/packages/heading#readme
270
- [@yozora/react-image]: https://github.com/yozorajs/yozora-react/tree/main/packages/image#readme
271
- [@yozora/react-inline-code]: https://github.com/yozorajs/yozora-react/tree/main/packages/inline-code#readme
272
- [@yozora/react-inline-math]: https://github.com/yozorajs/yozora-react/tree/main/packages/inline-math#readme
273
- [@yozora/react-link]: https://github.com/yozorajs/yozora-react/tree/main/packages/link#readme
274
- [@yozora/react-list]: https://github.com/yozorajs/yozora-react/tree/main/packages/list#readme
275
- [@yozora/react-list-item]: https://github.com/yozorajs/yozora-react/tree/main/packages/list-item#readme
276
- [@yozora/react-markdown]: https://github.com/yozorajs/yozora-react/tree/main/packages/markdown#readme
277
- [@yozora/react-math]: https://github.com/yozorajs/yozora-react/tree/main/packages/math#readme
278
- [@yozora/react-paragraph]: https://github.com/yozorajs/yozora-react/tree/main/packages/paragraph#readme
279
- [@yozora/react-strong]: https://github.com/yozorajs/yozora-react/tree/main/packages/strong#readme
280
- [@yozora/react-table]: https://github.com/yozorajs/yozora-react/tree/main/packages/table#readme
281
- [@yozora/react-text]: https://github.com/yozorajs/yozora-react/tree/main/packages/text#readme
282
- [@yozora/react-thematic-break]: https://github.com/yozorajs/yozora-react/tree/main/packages/thematic-break#readme
283
-
284
- [doc-live-examples/gfm]: https://yozora.guanghechen.com/docs/example/gfm
285
- [doc-@yozora/ast]: https://yozora.guanghechen.com/docs/package/ast
286
- [doc-@yozora/ast-util]: https://yozora.guanghechen.com/docs/package/ast-util
287
- [doc-@yozora/core-parser]: https://yozora.guanghechen.com/docs/package/core-parser
288
- [doc-@yozora/core-tokenizer]: https://yozora.guanghechen.com/docs/package/core-tokenizer
289
- [doc-@yozora/parser]: https://yozora.guanghechen.com/docs/package/parser
290
- [doc-@yozora/parser-gfm]: https://yozora.guanghechen.com/docs/package/parser-gfm
291
- [doc-@yozora/parser-gfm-ex]: https://yozora.guanghechen.com/docs/package/parser-gfm-ex
292
- [doc-@yozora/tokenizer-admonition]: https://yozora.guanghechen.com/docs/package/tokenizer-admonition
293
- [doc-@yozora/tokenizer-autolink]: https://yozora.guanghechen.com/docs/package/tokenizer-autolink
294
- [doc-@yozora/tokenizer-autolink-extension]: https://yozora.guanghechen.com/docs/package/tokenizer-autolink-extension
295
- [doc-@yozora/tokenizer-blockquote]: https://yozora.guanghechen.com/docs/package/tokenizer-blockquote
296
- [doc-@yozora/tokenizer-break]: https://yozora.guanghechen.com/docs/package/tokenizer-break
297
- [doc-@yozora/tokenizer-delete]: https://yozora.guanghechen.com/docs/package/tokenizer-delete
298
- [doc-@yozora/tokenizer-emphasis]: https://yozora.guanghechen.com/docs/package/tokenizer-emphasis
299
- [doc-@yozora/tokenizer-fenced-code]: https://yozora.guanghechen.com/docs/package/tokenizer-fenced-code
300
- [doc-@yozora/tokenizer-heading]: https://yozora.guanghechen.com/docs/package/tokenizer-heading
301
- [doc-@yozora/tokenizer-html-block]: https://yozora.guanghechen.com/docs/package/tokenizer-html-block
302
- [doc-@yozora/tokenizer-html-inline]: https://yozora.guanghechen.com/docs/package/tokenizer-html-inline
303
- [doc-@yozora/tokenizer-image]: https://yozora.guanghechen.com/docs/package/tokenizer-image
304
- [doc-@yozora/tokenizer-image-reference]: https://yozora.guanghechen.com/docs/package/tokenizer-image-reference
305
- [doc-@yozora/tokenizer-indented-code]: https://yozora.guanghechen.com/docs/package/tokenizer-indented-code
306
- [doc-@yozora/tokenizer-inline-code]: https://yozora.guanghechen.com/docs/package/tokenizer-inline-code
307
- [doc-@yozora/tokenizer-inline-math]: https://yozora.guanghechen.com/docs/package/tokenizer-inline-math
308
- [doc-@yozora/tokenizer-link]: https://yozora.guanghechen.com/docs/package/tokenizer-link
309
- [doc-@yozora/tokenizer-definition]: https://yozora.guanghechen.com/docs/package/tokenizer-definition
310
- [doc-@yozora/tokenizer-link-reference]: https://yozora.guanghechen.com/docs/package/tokenizer-link-reference
311
- [doc-@yozora/tokenizer-list]: https://yozora.guanghechen.com/docs/package/tokenizer-list
312
- [doc-@yozora/tokenizer-math]: https://yozora.guanghechen.com/docs/package/tokenizer-math
313
- [doc-@yozora/tokenizer-paragraph]: https://yozora.guanghechen.com/docs/package/tokenizer-paragraph
314
- [doc-@yozora/tokenizer-setext-heading]: https://yozora.guanghechen.com/docs/package/tokenizer-setext-heading
315
- [doc-@yozora/tokenizer-table]: https://yozora.guanghechen.com/docs/package/tokenizer-table
316
- [doc-@yozora/tokenizer-text]: https://yozora.guanghechen.com/docs/package/tokenizer-text
317
- [doc-@yozora/tokenizer-thematic-break]: https://yozora.guanghechen.com/docs/package/tokenizer-thematic-break
318
- [doc-@yozora/jest-for-tokenizer]: https://yozora.guanghechen.com/docs/package/jest-for-tokenizer
319
- [doc-@yozora/parser-gfm]: https://yozora.guanghechen.com/docs/package/parser-gfm
320
-
321
- [gfm-atx-heading]: https://github.github.com/gfm/#atx-heading
322
- [gfm-autolink]: https://github.github.com/gfm/#autolinks
323
- [gfm-autolink-extension]: https://github.github.com/gfm/#autolinks-extension-
324
- [gfm-blockquote]: https://github.github.com/gfm/#block-quotes
325
- [gfm-bullet-list]: https://github.github.com/gfm/#bullet-list
326
- [gfm-delete]: https://github.github.com/gfm/#strikethrough-extension-
327
- [gfm-emphasis]: https://github.github.com/gfm/#can-open-emphasis
328
- [gfm-fenced-code]: https://github.github.com/gfm/#fenced-code-block
329
- [gfm-hard-line-break]: https://github.github.com/gfm/#hard-line-break
330
- [gfm-html-block]: https://github.github.com/gfm/#html-block
331
- [gfm-html-inline]: https://github.github.com/gfm/#raw-html
332
- [gfm-image]: https://github.github.com/gfm/#images
333
- [gfm-image-reference]: https://github.github.com/gfm/#example-590
334
- [gfm-indented-code]: https://github.github.com/gfm/#indented-code-block
335
- [gfm-inline-code]: https://github.github.com/gfm/#code-span
336
- [gfm-link]: https://github.github.com/gfm/#inline-link
337
- [gfm-definition]: https://github.github.com/gfm/#link-reference-definition
338
- [gfm-link-reference]: https://github.github.com/gfm/#reference-link
339
- [gfm-list]: https://github.github.com/gfm/#lists
340
- [gfm-list-item]: https://github.github.com/gfm/#list-items
341
- [gfm-list-task-item]: https://github.github.com/gfm/#task-list-items-extension-
342
- [gfm-paragraph]: https://github.github.com/gfm/#paragraph
343
- [gfm-setext-heading]: https://github.github.com/gfm/#setext-heading
344
- [gfm-soft-line-break]: https://github.github.com/gfm/#soft-line-breaks
345
- [gfm-strong]: https://github.github.com/gfm/#can-open-strong-emphasis
346
- [gfm-tab]: https://github.github.com/gfm/#tabs
347
- [gfm-table]: https://github.github.com/gfm/#table
348
- [gfm-text]: https://github.github.com/gfm/#soft-line-breaks
349
- [gfm-thematic-break]: https://github.github.com/gfm/#thematic-break
209
+ [@yozora/ast]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/ast#readme
210
+ [@yozora/ast-util]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/ast-util#readme
211
+ [@yozora/character]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/character#readme
212
+ [@yozora/eslint-config]:
213
+ https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/eslint-config#readme
214
+ [@yozora/core-parser]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/core-parser#readme
215
+ [@yozora/core-tokenizer]:
216
+ https://github.com/yozorajs/yozora/tree/v2.3.1/packages/core-tokenizer#readme
217
+ [@yozora/invariant]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/invariant#readme
218
+ [@yozora/jest-for-tokenizer]:
219
+ https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/jest-for-tokenizer#readme
220
+ [@yozora/parser]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/parser#readme
221
+ [@yozora/parser-gfm]: https://github.com/yozorajs/yozora/tree/v2.3.1/packages/parser-gfm#readme
222
+ [@yozora/parser-gfm-ex]:
223
+ https://github.com/yozorajs/yozora/tree/v2.3.1/packages/parser-gfm-ex#readme
224
+ [@yozora/template-tokenizer]:
225
+ https://github.com/yozorajs/yozora/tree/release-2.x.x/packages/template-tokenizer#readme
226
+ [@yozora/tokenizer-admonition]:
227
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/admonition#readme
228
+ [@yozora/tokenizer-autolink]:
229
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/autolink#readme
230
+ [@yozora/tokenizer-autolink-extension]:
231
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/autolink-extension#readme
232
+ [@yozora/tokenizer-blockquote]:
233
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/blockquote#readme
234
+ [@yozora/tokenizer-break]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/break#readme
235
+ [@yozora/tokenizer-definition]:
236
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/definition#readme
237
+ [@yozora/tokenizer-delete]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/delete#readme
238
+ [@yozora/tokenizer-ecma-import]:
239
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/ecma-import#readme
240
+ [@yozora/tokenizer-emphasis]:
241
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/emphasis#readme
242
+ [@yozora/tokenizer-fenced-block]:
243
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/fenced-block#readme
244
+ [@yozora/tokenizer-fenced-code]:
245
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/fenced-code#readme
246
+ [@yozora/tokenizer-footnote]:
247
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/footnote#readme
248
+ [@yozora/tokenizer-footnote-definition]:
249
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/footnote-definition#readme
250
+ [@yozora/tokenizer-footnote-reference]:
251
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/footnote-reference#readme
252
+ [@yozora/tokenizer-heading]:
253
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/heading#readme
254
+ [@yozora/tokenizer-html-block]:
255
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/html-block#readme
256
+ [@yozora/tokenizer-html-inline]:
257
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/html-inline#readme
258
+ [@yozora/tokenizer-image]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/image#readme
259
+ [@yozora/tokenizer-image-reference]:
260
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/image-reference#readme
261
+ [@yozora/tokenizer-indented-code]:
262
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/indented-code#readme
263
+ [@yozora/tokenizer-inline-code]:
264
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/inline-code#readme
265
+ [@yozora/tokenizer-inline-math]:
266
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/inline-math#readme
267
+ [@yozora/tokenizer-link]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/link#readme
268
+ [@yozora/tokenizer-link-reference]:
269
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/link-reference#readme
270
+ [@yozora/tokenizer-list]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/list#readme
271
+ [@yozora/tokenizer-math]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/math#readme
272
+ [@yozora/tokenizer-paragraph]:
273
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/paragraph#readme
274
+ [@yozora/tokenizer-setext-heading]:
275
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/setext-heading#readme
276
+ [@yozora/tokenizer-table]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/table#readme
277
+ [@yozora/tokenizer-text]: https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/text#readme
278
+ [@yozora/tokenizer-thematic-break]:
279
+ https://github.com/yozorajs/yozora/tree/v2.3.1/tokenizers/thematic-break#readme
280
+ [@yozora/react-admonition]:
281
+ https://github.com/yozorajs/yozora-react/tree/main/packages/admonition#readme
282
+ [@yozora/react-blockquote]:
283
+ https://github.com/yozorajs/yozora-react/tree/main/packages/blockquote#readme
284
+ [@yozora/react-break]: https://github.com/yozorajs/yozora-react/tree/main/packages/break#readme
285
+ [@yozora/react-delete]: https://github.com/yozorajs/yozora-react/tree/main/packages/delete#readme
286
+ [@yozora/react-emphasis]:
287
+ https://github.com/yozorajs/yozora-react/tree/main/packages/emphasis#readme
288
+ [@yozora/react-code]: https://github.com/yozorajs/yozora-react/tree/main/packages/code#readme
289
+ [@yozora/react-code-live]:
290
+ https://github.com/yozorajs/yozora-react/tree/main/packages/code-live#readme
291
+ [@yozora/react-footnote-definitions]:
292
+ https://github.com/yozorajs/yozora-react/tree/main/packages/footnote-definitions#readme
293
+ [@yozora/react-footnote-reference]:
294
+ https://github.com/yozorajs/yozora-react/tree/main/packages/footnote-reference#readme
295
+ [@yozora/react-heading]: https://github.com/yozorajs/yozora-react/tree/main/packages/heading#readme
296
+ [@yozora/react-image]: https://github.com/yozorajs/yozora-react/tree/main/packages/image#readme
297
+ [@yozora/react-inline-code]:
298
+ https://github.com/yozorajs/yozora-react/tree/main/packages/inline-code#readme
299
+ [@yozora/react-inline-math]:
300
+ https://github.com/yozorajs/yozora-react/tree/main/packages/inline-math#readme
301
+ [@yozora/react-link]: https://github.com/yozorajs/yozora-react/tree/main/packages/link#readme
302
+ [@yozora/react-list]: https://github.com/yozorajs/yozora-react/tree/main/packages/list#readme
303
+ [@yozora/react-list-item]:
304
+ https://github.com/yozorajs/yozora-react/tree/main/packages/list-item#readme
305
+ [@yozora/react-markdown]:
306
+ https://github.com/yozorajs/yozora-react/tree/main/packages/markdown#readme
307
+ [@yozora/react-math]: https://github.com/yozorajs/yozora-react/tree/main/packages/math#readme
308
+ [@yozora/react-paragraph]:
309
+ https://github.com/yozorajs/yozora-react/tree/main/packages/paragraph#readme
310
+ [@yozora/react-strong]: https://github.com/yozorajs/yozora-react/tree/main/packages/strong#readme
311
+ [@yozora/react-table]: https://github.com/yozorajs/yozora-react/tree/main/packages/table#readme
312
+ [@yozora/react-text]: https://github.com/yozorajs/yozora-react/tree/main/packages/text#readme
313
+ [@yozora/react-thematic-break]:
314
+ https://github.com/yozorajs/yozora-react/tree/main/packages/thematic-break#readme
315
+ [doc-live-examples/gfm]: https://yozora.guanghechen.com/docs/example/gfm
316
+ [doc-@yozora/ast]: https://yozora.guanghechen.com/docs/package/ast
317
+ [doc-@yozora/ast-util]: https://yozora.guanghechen.com/docs/package/ast-util
318
+ [doc-@yozora/core-parser]: https://yozora.guanghechen.com/docs/package/core-parser
319
+ [doc-@yozora/core-tokenizer]: https://yozora.guanghechen.com/docs/package/core-tokenizer
320
+ [doc-@yozora/parser]: https://yozora.guanghechen.com/docs/package/parser
321
+ [doc-@yozora/parser-gfm]: https://yozora.guanghechen.com/docs/package/parser-gfm
322
+ [doc-@yozora/parser-gfm-ex]: https://yozora.guanghechen.com/docs/package/parser-gfm-ex
323
+ [doc-@yozora/tokenizer-admonition]: https://yozora.guanghechen.com/docs/package/tokenizer-admonition
324
+ [doc-@yozora/tokenizer-autolink]: https://yozora.guanghechen.com/docs/package/tokenizer-autolink
325
+ [doc-@yozora/tokenizer-autolink-extension]:
326
+ https://yozora.guanghechen.com/docs/package/tokenizer-autolink-extension
327
+ [doc-@yozora/tokenizer-blockquote]: https://yozora.guanghechen.com/docs/package/tokenizer-blockquote
328
+ [doc-@yozora/tokenizer-break]: https://yozora.guanghechen.com/docs/package/tokenizer-break
329
+ [doc-@yozora/tokenizer-delete]: https://yozora.guanghechen.com/docs/package/tokenizer-delete
330
+ [doc-@yozora/tokenizer-emphasis]: https://yozora.guanghechen.com/docs/package/tokenizer-emphasis
331
+ [doc-@yozora/tokenizer-fenced-code]:
332
+ https://yozora.guanghechen.com/docs/package/tokenizer-fenced-code
333
+ [doc-@yozora/tokenizer-heading]: https://yozora.guanghechen.com/docs/package/tokenizer-heading
334
+ [doc-@yozora/tokenizer-html-block]: https://yozora.guanghechen.com/docs/package/tokenizer-html-block
335
+ [doc-@yozora/tokenizer-html-inline]:
336
+ https://yozora.guanghechen.com/docs/package/tokenizer-html-inline
337
+ [doc-@yozora/tokenizer-image]: https://yozora.guanghechen.com/docs/package/tokenizer-image
338
+ [doc-@yozora/tokenizer-image-reference]:
339
+ https://yozora.guanghechen.com/docs/package/tokenizer-image-reference
340
+ [doc-@yozora/tokenizer-indented-code]:
341
+ https://yozora.guanghechen.com/docs/package/tokenizer-indented-code
342
+ [doc-@yozora/tokenizer-inline-code]:
343
+ https://yozora.guanghechen.com/docs/package/tokenizer-inline-code
344
+ [doc-@yozora/tokenizer-inline-math]:
345
+ https://yozora.guanghechen.com/docs/package/tokenizer-inline-math
346
+ [doc-@yozora/tokenizer-link]: https://yozora.guanghechen.com/docs/package/tokenizer-link
347
+ [doc-@yozora/tokenizer-definition]: https://yozora.guanghechen.com/docs/package/tokenizer-definition
348
+ [doc-@yozora/tokenizer-link-reference]:
349
+ https://yozora.guanghechen.com/docs/package/tokenizer-link-reference
350
+ [doc-@yozora/tokenizer-list]: https://yozora.guanghechen.com/docs/package/tokenizer-list
351
+ [doc-@yozora/tokenizer-math]: https://yozora.guanghechen.com/docs/package/tokenizer-math
352
+ [doc-@yozora/tokenizer-paragraph]: https://yozora.guanghechen.com/docs/package/tokenizer-paragraph
353
+ [doc-@yozora/tokenizer-setext-heading]:
354
+ https://yozora.guanghechen.com/docs/package/tokenizer-setext-heading
355
+ [doc-@yozora/tokenizer-table]: https://yozora.guanghechen.com/docs/package/tokenizer-table
356
+ [doc-@yozora/tokenizer-text]: https://yozora.guanghechen.com/docs/package/tokenizer-text
357
+ [doc-@yozora/tokenizer-thematic-break]:
358
+ https://yozora.guanghechen.com/docs/package/tokenizer-thematic-break
359
+ [doc-@yozora/jest-for-tokenizer]: https://yozora.guanghechen.com/docs/package/jest-for-tokenizer
360
+ [doc-@yozora/parser-gfm]: https://yozora.guanghechen.com/docs/package/parser-gfm
361
+ [gfm-atx-heading]: https://github.github.com/gfm/#atx-heading
362
+ [gfm-autolink]: https://github.github.com/gfm/#autolinks
363
+ [gfm-autolink-extension]: https://github.github.com/gfm/#autolinks-extension-
364
+ [gfm-blockquote]: https://github.github.com/gfm/#block-quotes
365
+ [gfm-bullet-list]: https://github.github.com/gfm/#bullet-list
366
+ [gfm-delete]: https://github.github.com/gfm/#strikethrough-extension-
367
+ [gfm-emphasis]: https://github.github.com/gfm/#can-open-emphasis
368
+ [gfm-fenced-code]: https://github.github.com/gfm/#fenced-code-block
369
+ [gfm-hard-line-break]: https://github.github.com/gfm/#hard-line-break
370
+ [gfm-html-block]: https://github.github.com/gfm/#html-block
371
+ [gfm-html-inline]: https://github.github.com/gfm/#raw-html
372
+ [gfm-image]: https://github.github.com/gfm/#images
373
+ [gfm-image-reference]: https://github.github.com/gfm/#example-590
374
+ [gfm-indented-code]: https://github.github.com/gfm/#indented-code-block
375
+ [gfm-inline-code]: https://github.github.com/gfm/#code-span
376
+ [gfm-link]: https://github.github.com/gfm/#inline-link
377
+ [gfm-definition]: https://github.github.com/gfm/#link-reference-definition
378
+ [gfm-link-reference]: https://github.github.com/gfm/#reference-link
379
+ [gfm-list]: https://github.github.com/gfm/#lists
380
+ [gfm-list-item]: https://github.github.com/gfm/#list-items
381
+ [gfm-list-task-item]: https://github.github.com/gfm/#task-list-items-extension-
382
+ [gfm-paragraph]: https://github.github.com/gfm/#paragraph
383
+ [gfm-setext-heading]: https://github.github.com/gfm/#setext-heading
384
+ [gfm-soft-line-break]: https://github.github.com/gfm/#soft-line-breaks
385
+ [gfm-strong]: https://github.github.com/gfm/#can-open-strong-emphasis
386
+ [gfm-tab]: https://github.github.com/gfm/#tabs
387
+ [gfm-table]: https://github.github.com/gfm/#table
388
+ [gfm-text]: https://github.github.com/gfm/#soft-line-breaks
389
+ [gfm-thematic-break]: https://github.github.com/gfm/#thematic-break
350
390
 
351
391
  <!-- :end -->
package/lib/cjs/index.cjs CHANGED
@@ -100,3 +100,4 @@ exports.BreakTokenizerName = uniqueName;
100
100
  exports.breakMatch = match;
101
101
  exports.breakParse = parse;
102
102
  exports.default = BreakTokenizer;
103
+ //# sourceMappingURL=index.cjs.map
package/lib/esm/index.mjs CHANGED
@@ -92,3 +92,4 @@ class BreakTokenizer extends BaseInlineTokenizer {
92
92
  }
93
93
 
94
94
  export { BreakTokenizer, uniqueName as BreakTokenizerName, match as breakMatch, parse as breakParse, BreakTokenizer as default };
95
+ //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-break",
3
- "version": "2.3.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/break"
12
12
  },
13
- "homepage": "https://github.com/yozorajs/yozora/tree/v2.2.0/tokenizers/break",
13
+ "homepage": "https://github.com/yozorajs/yozora/tree/v2.3.0/tokenizers/break",
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.3.0",
43
- "@yozora/character": "^2.3.0",
44
- "@yozora/core-tokenizer": "^2.3.0"
37
+ "@yozora/ast": "^2.3.1",
38
+ "@yozora/character": "^2.3.1",
39
+ "@yozora/core-tokenizer": "^2.3.1"
45
40
  },
46
- "gitHead": "f8ed6c970eabd41d6528847a1803cb4ec0eaadf7"
41
+ "gitHead": "eaea7c3649e7e7886a1c3a85125b8c6268fdab20"
47
42
  }