@yozora/tokenizer-emphasis 2.3.0 → 2.3.2

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