aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Add parsing filepathHEADmasterAaditya Dhruv2025-08-101-8/+14
| | | | - Pass a valid markdown filepath and convert it to HTML
* Add Parser supportAaditya Dhruv2025-08-104-26/+183
| | | | | | | - 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-073-0/+116
| | | | | | Add a really basic lexer, which only lexes HASH (headings), TEXT (paragraphs), and newlines. These generated tokens will be fed into the parser
* Add package details in Cargo.tomlAaditya Dhruv2025-06-263-0/+12
|
* Barebones rendering frameworkAaditya Dhruv2025-06-053-0/+139