[Feature] scan indented blocks (blockquotes and lists) - #7
Merged
Conversation
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe your changes
Extends the block scanning logic to handle indented blocks — specifically nested blockquotes and list items. The parser now tracks the indent context (e.g.
>,-) as it traverses the tree-sitter AST, strips those prefixes from block content, and attaches the computed indent string to eachBlock.Key changes:
Blockgains anindentfield (the nesting prefix, e.g.> >) and acontinuationfield (whether the block starts on the same line as the preceding one).MakeBlocksFromMarkdownis restructured into ablockCollectorthat recurses intoblock_quoteandlist_itemnodes, correctly stripping and forwarding indent prefixes.text,fenced_code,html_comment).Block.Content()now returnsstringinstead of[]byte.Notes for reviewers
Checklist before requesting a review
If any of these checks are missing, please provide an explanation.