aboutsummaryrefslogtreecommitdiff
path: root/src/parser/mod.rs
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2025-07-07 18:16:35 -0500
committerAaditya Dhruv <[email protected]>2025-07-07 18:16:35 -0500
commit63dbc54db1c33e341f2e843a6c71807e51a4dd7b (patch)
tree880ddfea2639360d07430d10403747fa1c9b5823 /src/parser/mod.rs
parent348e190427c28d3985ad4c8453eeb2fdee5d4d22 (diff)
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
Diffstat (limited to 'src/parser/mod.rs')
-rw-r--r--src/parser/mod.rs1
1 files changed, 1 insertions, 0 deletions
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;