Parse markdown text to AST without HTML conversion
Internal Use Only - Provides direct access to the parsed AST structure
for advanced processing scenarios. The AST contains structured node information
that can be analyzed, transformed, or used for content extraction.
Example
// Extract structured content for documentation analysis const { ast, references, lines } = parseMarkdownToAST(` # Introduction This is a [link](https://example.com) and . \`\`\`javascript console.log("Hello world"); \`\`\` `);
Parse markdown text to AST without HTML conversion
Internal Use Only - Provides direct access to the parsed AST structure for advanced processing scenarios. The AST contains structured node information that can be analyzed, transformed, or used for content extraction.
Example