2.3.12 • Published 4 months ago

@yozora/tokenizer-footnote v2.3.12

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

@yozora/tokenizer-footnote produce Footnote type nodes. See documentation for details.

Install

  • npm

    npm install --save @yozora/tokenizer-footnote
  • yarn

    yarn add @yozora/tokenizer-footnote

Usage

@yozora/tokenizer-footnote has been integrated into @yozora/parser, so you can use YozoraParser directly.

Basic Usage

@yozora/tokenizer-footnote cannot be used alone, it needs to be registered in YastParser as a plugin-in before it can be used.

import { DefaultParser } from '@yozora/core-parser'
import ParagraphTokenizer from '@yozora/tokenizer-paragraph'
import TextTokenizer from '@yozora/tokenizer-text'
import FootnoteTokenizer from '@yozora/tokenizer-footnote'

const parser = new DefaultParser()
  .useFallbackTokenizer(new ParagraphTokenizer())
  .useFallbackTokenizer(new TextTokenizer())
  .useTokenizer(new FootnoteTokenizer())

// parse source markdown content
parser.parse(`
^[inline footnote]

^[footnote with *emphasis* and $x^2+y^2$ and `inline code`]
`)

Use within @yozora/parser

import YozoraParser from '@yozora/parser'

const parser = new YozoraParser()

// parse source markdown content
parser.parse(`
^[inline footnote]

^[footnote with *emphasis* and $x^2+y^2$ and `inline code`]
`)

Use with @yozora/parser-gfm

import GfmParser from '@yozora/parser-gfm'
import FootnoteTokenizer from '@yozora/tokenizer-footnote'

const parser = new GfmParser()
parser.useTokenizer(new FootnoteTokenizer())

// parse source markdown content
parser.parse(`
^[inline footnote]

^[footnote with *emphasis* and $x^2+y^2$ and `inline code`]
`)

Use within @yozora/parser-gfm-ex

import GfmExParser from '@yozora/parser-gfm-ex'
import FootnoteTokenizer from '@yozora/tokenizer-footnote'

const parser = new GfmExParser()
parser.useTokenizer(new FootnoteTokenizer())

// parse source markdown content
parser.parse(`
^[inline footnote]

^[footnote with *emphasis* and $x^2+y^2$ and `inline code`]
`)

Options

NameTypeRequiredDefault
namestringfalse"@yozora/tokenizer-footnote"
prioritynumberfalseTokenizerPriority.LINKS
  • name: The unique name of the tokenizer, used to bind the token it generates, to determine the tokenizer that should be called in each life cycle of the token in the entire matching / parsing phase.

  • priority: Priority of the tokenizer, determine the order of processing, high priority priority execution. interruptable. In addition, in the match-block stage, a high-priority tokenizer can interrupt the matching process of a low-priority tokenizer.

    Exception: Delimiters of type full are always processed before other type delimiters.

Related

2.3.12

4 months ago

2.3.11

5 months ago

2.3.10

6 months ago

2.3.9

7 months ago

2.3.8

7 months ago

2.3.7

8 months ago

2.3.6

8 months ago

2.3.4

9 months ago

2.3.5

9 months ago

2.3.3

9 months ago

2.3.2

1 year ago

2.3.1

1 year ago

2.3.0

2 years ago

2.2.0

2 years ago

2.1.5

2 years ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.0.6

2 years ago

2.1.0

2 years ago

2.0.5-alpha.0

2 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.5

2 years ago

2.0.4

3 years ago

2.0.2-alpha.0

3 years ago

2.0.1

3 years ago

2.0.0-alpha.3

3 years ago

2.0.0-alpha.0

3 years ago

2.0.0-alpha.1

3 years ago

2.0.0-alpha.2

3 years ago

2.0.0

3 years ago

1.3.0

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.2.0-alpha.1

4 years ago

1.2.0-alpha.0

4 years ago

1.1.0

4 years ago

1.1.0-alpha.2

4 years ago

1.1.0-alpha.1

4 years ago

1.1.0-alpha.0

4 years ago

1.0.0

4 years ago

1.0.0-beta.0

4 years ago

1.0.0-alpha.29

4 years ago

1.0.0-alpha.27

4 years ago

1.0.0-alpha.28

4 years ago

1.0.0-alpha.26

4 years ago

1.0.0-alpha.25

4 years ago

1.0.0-alpha.23

4 years ago

1.0.0-alpha.24

4 years ago

1.0.0-alpha.21

4 years ago

1.0.0-alpha.20

4 years ago

1.0.0-alpha.22

4 years ago

1.0.0-alpha.19

4 years ago

1.0.0-alpha.18

4 years ago