aboutsummaryrefslogtreecommitdiff
path: root/src/parser/lexer.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add Parser supportAaditya Dhruv2025-08-101-13/+13
| | | | | | | - Parser is able to take Lexer tokens and generate AST with Text (Paragraph) and Headings - Scanner has been renamed to Lexer - main.rs has been updated to use the Lexer and Parser
* Add LexerAaditya Dhruv2025-07-071-0/+112
Add a really basic lexer, which only lexes HASH (headings), TEXT (paragraphs), and newlines. These generated tokens will be fed into the parser