aboutsummaryrefslogtreecommitdiff
path: root/out.html
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2025-08-10 22:10:11 -0500
committerAaditya Dhruv <[email protected]>2025-08-10 22:10:11 -0500
commitd862b84ce868353e3482b380d0b68495de12eb6b (patch)
treed114c4b44460b9d1eaf689ea2ffed10c21943ecc /out.html
parent63dbc54db1c33e341f2e843a6c71807e51a4dd7b (diff)
Add Parser support
- 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
Diffstat (limited to 'out.html')
-rw-r--r--out.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/out.html b/out.html
index 6c70bcf..eb22d77 100644
--- a/out.html
+++ b/out.html
@@ -1 +1,6 @@
-<html></html> \ No newline at end of file
+<html>
+<h2> Title</h2>
+<p>Text of a paragraph</p>
+<h5> Second heading</h5>
+<p>Some more text</p>
+</html> \ No newline at end of file