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/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/parser/mod.rs') diff --git a/src/parser/mod.rs b/src/parser/mod.rs index 67c567f..da03ab1 100644 --- a/src/parser/mod.rs +++ b/src/parser/mod.rs @@ -1 +1,2 @@ pub mod parser; +pub mod lexer; -- cgit