mdast
Markdown Abstract Syntax Tree format (by syntax-tree)
babel-parser | mdast | |
---|---|---|
- | 7 | |
37,972 | 1,245 | |
- | 2.7% | |
- | 5.0 | |
- | 9 months ago | |
- | - |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
babel-parser
Posts with mentions or reviews of babel-parser.
We have used some of these posts to build our list of alternatives
and similar projects.
We haven't tracked posts mentioning babel-parser yet.
Tracking mentions began in Dec 2020.
mdast
Posts with mentions or reviews of mdast.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-05-27.
-
Show HN: My LLM CLI tool can run tools now, from Python code or plugins
The real solution is semantic routing. You want to be able to define routing rules based on something like mdast (https://github.com/syntax-tree/mdast) . This is certainly on my itinerary and I've built a few hacked versions. This would allow for things like terminal rendering and quite a bit more.
-
Building ask-PDF service using LLMs
I ended up using mdast to split each section into chunks between 1000 and 2000 characters. I made exceptions for tables, code blocks, blockquotes, and lists.
-
Remark plug-in, wrapping a span around a string
The actual splitting of the node into those 3 new nodes will depend on the type of AST node (see docs). If you look at other remark plugins, you might find examples or utils for doing that more easily.
-
Contentlayer with next/image
contentlayer uses remark to parse the markdown in an mdast. We can now use remark plugins to modify the mdast. Then rehype comes into play and converts the mdast into a hast. rehype plugins can now modify the hast. Finally the hast is converted into react components.
-
Converting and customizing Markdown files to HTML with Unified, remark & rehype
remark parses and process the Markdown text, and converts it into an abstract syntax tree (AST). This tree is composed of unist nodes, which follow the Markdown Abstract Syntax Tree (mdast) structure.
- Mdast: Markdown Abstract Syntax Tree
-
How to create a custom lint rule for Markdown and MDX using remark and ESLint
Because we will be inspecting a mdast, which is a markdown abstract syntax tree built upon unist, we can take advantage of the many existing unist utilities to inspect our tree's nodes.
What are some alternatives?
When comparing babel-parser and mdast you can also consider the following projects:
Acorn - A small, fast, JavaScript-based JavaScript parser
vfile - Virtual file format for text processing used in @unifiedjs
Rocambole - Recursively walk and transform EcmaScript AST
unist - Universal Syntax Tree used by @unifiedjs
cherow
unist-util-generated - utility to check if a node is generated