From 63dbc54db1c33e341f2e843a6c71807e51a4dd7b Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Mon, 7 Jul 2025 18:16:35 -0500 Subject: Add Lexer Add a really basic lexer, which only lexes HASH (headings), TEXT (paragraphs), and newlines. These generated tokens will be fed into the parser --- src/parser/parser.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/parser/parser.rs') diff --git a/src/parser/parser.rs b/src/parser/parser.rs index 017ec83..53aa751 100644 --- a/src/parser/parser.rs +++ b/src/parser/parser.rs @@ -8,3 +8,6 @@ pub struct Heading { size: u8, value: Text, } + +pub struct Exp { +} -- cgit