# @lezer/markdown This is an incremental Markdown ([CommonMark](https://commonmark.org/) with support for extension) parser that integrates well with the [Lezer](https://lezer.codemirror.net/) parser system. It does not in fact use the Lezer runtime (that runs LR parsers, and Markdown can't really be parsed that way), but it produces Lezer-style compact syntax trees and consumes fragments of such trees for its incremental parsing. Note that this only _parses_ the document, producing a data structure that represents its syntactic form, and doesn't help with outputting HTML. Also, in order to be single-pass and incremental, it doesn't do some things that a conforming CommonMark parser is expected to do—specifically, it doesn't validate link references, so it'll parse `[a][b]` and similar as a link, even if no `[b]` reference is declared. The [@codemirror/lang-markdown](https://github.com/codemirror/lang-markdown) package integrates this parser with CodeMirror to provide Markdown editor support. The code is licensed under an MIT license. ## Interface
parser: MarkdownParserThe default CommonMark parser.
class
MarkdownParser extends ParserA Markdown parser configuration.
nodeSet: NodeSetThe parser's syntax node types.
configure(spec: MarkdownExtension) → MarkdownParserReconfigure the parser.
parseInline(text: string, offset: number) → Element[]Parse the given piece of inline text at the given offset,
returning an array of Element objects representing
the inline content.
interface
MarkdownConfigObjects of this type are used to configure the Markdown parser.
props?: readonly NodePropSource[]Node props to add to the parser's node set.
defineNodes?: readonly (string | NodeSpec)[]Define new node types for use in parser extensions.
parseBlock?: readonly BlockParser[]Define additional block parsing logic.
parseInline?: readonly InlineParser[]Define new inline parsing logic.
remove?: readonly string[]Remove the named parsers from the configuration.
wrap?: ParseWrapperAdd a parse wrapper (such as a mixed-language parser) to this parser.
type
MarkdownExtension = MarkdownConfig | readonly MarkdownExtension[]
To make it possible to group extensions together into bigger extensions (such as the Github-flavored Markdown extension), reconfiguration accepts nested arrays of config objects.
parseCode(config: Object) → MarkdownExtensionCreate a Markdown extension to enable nested parsing on code blocks and/or embedded HTML.
configcodeParser?: fn(info: string) → Parser | nullWhen provided, this will be used to parse the content of code
blocks. info is the string after the opening ``` marker,
or the empty string if there is no such info or this is an
indented code block. If there is a parser available for the
code, it should return a function that can construct the
parse.
htmlParser?: ParserThe parser used to parse HTML tags (both block and inline).
GFM: MarkdownConfig[]Extension bundle containing Table,
TaskList, Strikethrough, and
Autolink.
Table: MarkdownConfigThis extension provides GFM-style tables, using syntax like this:
| head 1 | head 2 |
| --- | --- |
| cell 1 | cell 2 |
TaskList: MarkdownConfigExtension providing
GFM-style
task list items, where list items can be prefixed with [ ] or
[x] to add a checkbox.
Strikethrough: MarkdownConfigAn extension that implements
GFM-style
Strikethrough syntax using ~~ delimiters.
Autolink: MarkdownConfigExtension that implements autolinking for
www./http:///https:///mailto:/xmpp: URLs and email
addresses.
Subscript: MarkdownConfigExtension providing
Pandoc-style
subscript using ~ markers.
Superscript: MarkdownConfigExtension providing
Pandoc-style
superscript using ^ markers.
Emoji: MarkdownConfigExtension that parses two colons with only letters, underscores,
and numbers between them as Emoji nodes.
interface
NodeSpecUsed in the configuration to define new syntax node types.
name: stringThe node's name.
block?: booleanShould be set to true if this type represents a block node.
composite?: fn(cx: BlockContext, line: Line, value: number) → booleanIf this is a composite block, this should hold a function that, at the start of a new line where that block is active, checks whether the composite block should continue (return value) and optionally adjusts the line's base position and registers nodes for any markers involved in the block's syntax.
style?: Tag | readonly Tag[] | Object<Tag | readonly Tag[]>Add highlighting tag information for this node. The value of
this property may either by a tag or array of tags to assign
directly to this node, or an object in the style of
styleTags's
argument to assign more complicated rules.
class
BlockContext implements PartialParseBlock-level parsing functions get access to this context object.
lineStart: numberThe start of the current line.
parser: MarkdownParserThe parser configuration used.
depth: numberThe number of parent blocks surrounding the current block.
parentType(depth?: number = this.depth - 1) → NodeTypeGet the type of the parent block at the given depth. When no depth is passed, return the type of the innermost parent.
nextLine() → booleanMove to the next input line. This should only be called by
(non-composite) block parsers that consume
the line directly, or leaf block parser
nextLine methods when they
consume the current line (and return true).
peekLine() → stringRetrieve the text of the line after the current one, without actually moving the context's current line forward.
prevLineEnd() → numberThe end position of the previous line.
startComposite(type: string, start: number, value?: number = 0)Start a composite block. Should only be called from block parser functions that return null.
addElement(elt: Element)Add a block element. Can be called by block parsers.
addLeafElement(leaf: LeafBlock, elt: Element)Add a block element from a leaf parser. This makes sure any extra composite block markup (such as blockquote markers) inside the block are also added to the syntax tree.
elt(type: string, from: number, to: number, children?: readonly Element[]) → ElementCreate an Element object to represent some syntax
node.
interface
BlockParserBlock parsers handle block-level structure. There are three general types of block parsers:
Composite block parsers, which handle things like lists and
blockquotes. These define a parse method
that starts a composite block
and returns null when it recognizes its syntax.
Eager leaf block parsers, used for things like code or HTML
blocks. These can unambiguously recognize their content from its
first line. They define a parse method
that, if it recognizes the construct,
moves the current line forward to the
line beyond the end of the block,
add a syntax node for the block, and
return true.
Leaf block parsers that observe a paragraph-like construct as it
comes in, and optionally decide to handle it at some point. This
is used for "setext" (underlined) headings and link references.
These define a leaf method that checks
the first line of the block and returns a
LeafBlockParser object if it wants to
observe that block.
name: stringThe name of the parser. Can be used by other block parsers to specify precedence.
parse?: fn(cx: BlockContext, line: Line) → boolean | nullThe eager parse function, which can look at the block's first
line and return false to do nothing, true if it has parsed
(and moved past a block), or null if
it has started a composite block.
leaf?: fn(cx: BlockContext, leaf: LeafBlock) → LeafBlockParser | nullA leaf parse function. If no regular parse functions match for a given line, its content will be accumulated for a paragraph-style block. This method can return an object that overrides that style of parsing in some situations.
endLeaf?: fn(cx: BlockContext, line: Line, leaf: LeafBlock) → booleanSome constructs, such as code blocks or newly started blockquotes, can interrupt paragraphs even without a blank line. If your construct can do this, provide a predicate here that recognizes lines that should end a paragraph (or other non-eager leaf block).
before?: stringWhen given, this parser will be installed directly before the block parser with the given name. The default configuration defines block parsers with names LinkReference, IndentedCode, FencedCode, Blockquote, HorizontalRule, BulletList, OrderedList, ATXHeading, HTMLBlock, and SetextHeading.
after?: stringWhen given, the parser will be installed directly after the parser with the given name.
interface
LeafBlockParserObjects that are used to override paragraph-style blocks should conform to this interface.
nextLine(cx: BlockContext, line: Line, leaf: LeafBlock) → booleanUpdate the parser's state for the next line, and optionally
finish the block. This is not called for the first line (the
object is constructed at that line), but for any further lines.
When it returns true, the block is finished. It is okay for
the function to consume the current
line or any subsequent lines when returning true.
finish(cx: BlockContext, leaf: LeafBlock) → booleanCalled when the block is finished by external circumstances (such as a blank line or the start of another construct). If this parser can handle the block up to its current position, it should finish the block and return true.
class
LineData structure used during block-level per-line parsing.
text: stringThe line's full text.
baseIndent: numberThe base indent provided by the composite contexts (that have been handled so far).
basePos: numberThe string position corresponding to the base indent.
pos: numberThe position of the next non-whitespace character beyond any list, blockquote, or other composite block markers.
indent: numberThe column of the next non-whitespace character.
next: numberThe character code of the character after pos.
skipSpace(from: number) → numberSkip whitespace after the given position, return the position of
the next non-space character or the end of the line if there's
only space after from.
moveBase(to: number)Move the line's base position forward to the given position. This should only be called by composite block parsers or markup skipping functions.
moveBaseColumn(indent: number)Move the line's base position forward to the given column.
addMarker(elt: Element)Store a composite-block-level marker. Should be called from markup skipping functions when they consume any non-whitespace characters.
countIndent(to: number, from?: number = 0, indent?: number = 0) → numberFind the column position at to, optionally starting at a given
position and column.
findColumn(goal: number) → numberFind the position corresponding to the given column.
class
LeafBlockData structure used to accumulate a block's content during leaf block parsing.
parsers: LeafBlockParser[]The block parsers active for this block.
start: numberThe start position of the block.
content: stringThe block's text content.
class
InlineContextInline parsing functions get access to this context, and use it to read the content and emit syntax nodes.
parser: MarkdownParserThe parser that is being used.
text: stringThe text of this inline section.
offset: numberThe starting offset of the section in the document.
char(pos: number) → numberGet the character code at the given (document-relative) position.
end: numberThe position of the end of this inline section.
slice(from: number, to: number) → stringGet a substring of this inline section. Again uses document-relative positions.
addDelimiter(type: DelimiterType, from: number, to: number, open: boolean, close: boolean) → numberAdd a delimiter at this given position. open
and close indicate whether this delimiter is opening, closing,
or both. Returns the end of the delimiter, for convenient
returning from parse functions.
hasOpenLink: booleanReturns true when there is an unmatched link or image opening token before the current position.
addElement(elt: Element) → numberAdd an inline element. Returns the end of the element.
findOpeningDelimiter(type: DelimiterType) → number | nullFind an opening delimiter of the given type. Returns null if
no delimiter is found, or an index that can be passed to
takeContent otherwise.
takeContent(startIndex: number) → Element[]Remove all inline elements and delimiters starting from the
given index (which you should get from
findOpeningDelimiter,
resolve delimiters inside of them, and return them as an array
of elements.
getDelimiterAt(index: number) → {from: number, to: number, type: DelimiterType} | nullReturn the delimiter at the given index. Mostly useful to get
additional info out of a delimiter index returned by
findOpeningDelimiter.
Returns null if there is no delimiter at this index.
skipSpace(from: number) → numberSkip space after the given (document) position, returning either the position of the next non-space character or the end of the section.
elt(type: string, from: number, to: number, children?: readonly Element[]) → ElementCreate an Element for a syntax node.
static linkStart: DelimiterTypeThe opening delimiter type used by the standard link parser.
static imageStart: DelimiterTypeOpening delimiter type used for standard images.
interface
InlineParserInline parsers are called for every character of parts of the document that are parsed as inline content.
name: stringThis parser's name, which can be used by other parsers to indicate a relative precedence.
parse(cx: InlineContext, next: number, pos: number) → numberThe parse function. Gets the next character and its position as arguments. Should return -1 if it doesn't handle the character, or add some element or delimiter and return the end position of the content it parsed if it can.
before?: stringWhen given, this parser will be installed directly before the
parser with the given name. The default configuration defines
inline parsers with names Escape, Entity, InlineCode, HTMLTag,
Emphasis, HardBreak, Link, and Image. When no before or
after property is given, the parser is added to the end of the
list.
after?: stringWhen given, the parser will be installed directly after the parser with the given name.
interface
DelimiterTypeDelimiters are used during inline parsing to store the positions of things that might be delimiters, if another matching delimiter is found. They are identified by objects with these properties.
resolve?: stringIf this is given, the delimiter should be matched automatically when a piece of inline content is finished. Such delimiters will be matched with delimiters of the same type according to their open and close properties. When a match is found, the content between the delimiters is wrapped in a node whose name is given by the value of this property.
When this isn't given, you need to match the delimiter eagerly
using the findOpeningDelimiter
and takeContent methods.
mark?: stringIf the delimiter itself should, when matched, create a syntax node, set this to the name of the syntax node.
class
ElementElements are used to compose syntax nodes during parsing.
type: numberThe node's id.
from: numberThe start of the node, as an offset from the start of the document.
to: numberThe end of the node.