diff --git a/lexer/identifier_lexer.ts b/lexer/identifier_lexer.ts
index 29f34da..109c6cc 100644
--- a/lexer/identifier_lexer.ts
+++ b/lexer/identifier_lexer.ts
@@ -34,7 +34,7 @@ export function scan_identifier(input: string, starting_position: number, is_dat
}
function check_keyword(value: string): string {
- const keywords = ["case", "static", "const", "enum", "loop", "use", "break", "catch", "continue", "do", "else", "finally", "for", "fun", "if", "in", "fn", "nil", "return", "throw", "try", "while", "type", "match", "with", "of", "abstract", "class", "interface", "private", "pub", "map", "override", "open", "init", "val", "var", "mut", "clone"];
+ const keywords = ["case", "static", "const", "enum", "loop", "use", "break", "catch", "continue", "do", "else", "finally", "for", "fun", "if", "in", "fn", "nil", "return", "throw", "try", "while", "type", "match", "with", "of", "abstract", "class", "interface", "private", "pub", "override", "open", "init", "val", "var", "mut", "clone"];
if (keywords.includes(value)) {
return "keyword";
diff --git a/md-docs.config.yaml b/md-docs.config.yaml
index 917ac1e..e70befb 100644
--- a/md-docs.config.yaml
+++ b/md-docs.config.yaml
@@ -3,8 +3,9 @@ output: static
template: static/template.html
headings:
- h1: text-3xl mb-4 font-display opacity-90
- h2: text-2xl mt-10 mb-4 font-display opacity-90
- h3: text-xl mt-10 mb-4 font-display opacity-90
+ h1: text-4xl mb-4 mt-8 font-display opacity-90 font-black text-c-text-2
+ h2: text-2xl mt-10 mb-4 font-display opacity-90 font-bold text-c-text-2
+ h3: text-xl mt-10 mb-4 font-display opacity-90 text-c-text-2
-file_tree_title_classes: "uppercase text-sm font-display"
+file_tree_title_classes: "uppercase font-display text-c-text-2 font-medium"
+link_classes: text-blue-500 hover:underline
diff --git a/md/learn/index.md b/md/learn/index.md
index bac43e4..62e626b 100644
--- a/md/learn/index.md
+++ b/md/learn/index.md
@@ -1,12 +1,11 @@
-![Accurate visual description of THP](/img/desc_thp.jpg)
-
-
# Welcome
Welcome to the documentation of the THP programming languague.
THP is a new programming language that compiles to PHP.
+![Accurate visual description of THP](/img/desc_thp.jpg)
+
This page discusses some of the design decitions of the language,
diff --git a/static/index.html b/static/index.html
index 884448b..1f7063d 100644
--- a/static/index.html
+++ b/static/index.html
@@ -20,38 +20,39 @@
+
Inspired by Rust, Zig and Swift, THP has a modern syntax, semantics, type system and stdlib.