11 releases

new 0.2.3 Mar 22, 2024
0.2.2 Mar 22, 2024
0.1.7 Nov 10, 2023
0.1.5 Mar 5, 2023
0.0.1 Apr 26, 2022

#35 in Text editors

Download history 507/week @ 2023-12-04 595/week @ 2023-12-11 466/week @ 2023-12-18 74/week @ 2023-12-25 248/week @ 2024-01-01 213/week @ 2024-01-08 823/week @ 2024-01-15 1553/week @ 2024-01-22 1313/week @ 2024-01-29 727/week @ 2024-02-05 689/week @ 2024-02-12 667/week @ 2024-02-19 903/week @ 2024-02-26 660/week @ 2024-03-04 793/week @ 2024-03-11 750/week @ 2024-03-18

3,123 downloads per month
Used in 3 crates

MIT license

4.5MB
138K SLoC

C 137K SLoC // 0.0% comments JavaScript 1K SLoC // 0.2% comments Rust 410 SLoC Scheme 78 SLoC // 0.0% comments

tree-sitter-markdown

CI discord matrix npm crates

A Markdown parser for tree-sitter.

screenshot

The parser is designed to read markdown according to the CommonMark Spec, but some extensions to the spec from different sources such as Github flavored markdown are also included. These can be toggled on or off at compile time. For specifics see Extensions

Goals

Even though this parser has existed for some while and obvious issues are mostly solved, there are still lots of inaccuarcies in the output. These stem from restricting a complex format such as markdown to the quite restricting tree-sitter parsing rules.

As such it is not recommended to use this parser where correctness is important. The main goal for this parser is to provide syntactical information for syntax highlighting in parsers such as neovim and helix.

Contributing

All contributions are welcome. For details refer to CONTRIBUTING.md.

Extensions

Extensions can be enabled at compile time through environment variables. Some of them are on by default, these can be disabled with the environment variable NO_DEFAULT_EXTENSIONS.

Name Environment variable Specification Default Also enables
Github flavored markdown EXTENSION_GFM link Task lists, strikethrough, pipe tables
Task lists EXTENSION_TASK_LIST link
Strikethrough EXTENSION_STRIKETHROUGH link
Pipe tables EXTENSION_PIPE_TABLE link
YAML metadata EXTENSION_MINUS_METADATA link
TOML metadata EXTENSION_PLUS_METADATA link
Tags EXTENSION_TAGS link
Wiki Link EXTENSION_WIKI_LINK link

Usage in Editors

For guides on how to use this parser in a specific editor, refer to that editor's specific documentation, e.g.

Standalone usage

To use the two grammars, first parse the document with the block grammar. Then perform a second parse with the inline grammar using ts_parser_set_included_ranges to specify which parts are inline content. These parts are marked as inline nodes. Children of those inline nodes should be excluded from these ranges. For an example implementation see lib.rs in the bindings folder.

Usage with WASM

Unfortunately using this parser with WASM/web-tree-sitter does not work out of the box at the moment. This is because the parser uses some C functions that are not exported by tree-sitter by default. To fix this you can statically link the parser to tree-sitter. See also https://github.com/tree-sitter/tree-sitter/issues/949, https://github.com/MDeiml/tree-sitter-markdown/issues/126, and https://github.com/MDeiml/tree-sitter-markdown/issues/93

Dependencies

~2.8–4MB
~71K SLoC