diff --git a/preview b/preview
index 553a1f0..c7a9d8f 100755
--- a/preview
+++ b/preview
@@ -6,4 +6,4 @@ start="
TypoML Preview$style"
end=""
output="$start$input$end"
echo "$output" > /tmp/preview.html
-nohup xdg-open /tmp/preview.html &
+nohup xdg-open /tmp/preview.html > /dev/null 2>&1 &
diff --git a/src/main.odin b/src/main.odin
index f386fd4..2550693 100644
--- a/src/main.odin
+++ b/src/main.odin
@@ -62,5 +62,12 @@ print_token :: proc(token: ^Token, depth: int = 0) {
main :: proc() {
lines := read_stdin()
parsed := parse(lines)
+ // print_html(&parsed)
+ fmt.println("
")
+ fmt.println("Token Tree
")
+ fmt.println("")
+ fmt.println("")
print_token(&parsed)
+ fmt.println("")
+ fmt.println("
")
}
diff --git a/test b/test
index c36a7d9..0f4ed1c 100755
--- a/test
+++ b/test
@@ -1 +1 @@
-clear && make format && cat README.tlm | make run # | ./preview
+clear && make format && cat README.tlm | make run | ./preview