diff --git a/tools/doc/code_template.md.html b/tools/doc/code_template.md.html
index 50432a8..78141b4 100644
--- a/tools/doc/code_template.md.html
+++ b/tools/doc/code_template.md.html
@@ -1,7 +1,4 @@
-$NAME$
-----------------------------------------------------------------------------------------
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++
$CODE$
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/tools/doc/index_template.md.html b/tools/doc/index_template.md.html
index 917ecdf..4cd7e2b 100644
--- a/tools/doc/index_template.md.html
+++ b/tools/doc/index_template.md.html
@@ -18,8 +18,15 @@ The rest of the information on this page is bogus placeholder to show the format
ENUMS
====================================================================================
+Error
+----------------------------------------------------------------------------------------
-|||ENUM_ClockDirection|||
+|||ENUM_Error|||
+
+KeyList
+----------------------------------------------------------------------------------------
+
+|||ENUM_KeyList|||
diff --git a/tools/doc/main.cpp b/tools/doc/main.cpp
index 16c1c34..462aed6 100644
--- a/tools/doc/main.cpp
+++ b/tools/doc/main.cpp
@@ -528,9 +528,9 @@ void process_file(const String &path) {
String keyword = "|||" + E->get() + "|||";
String class_str = class_index[c];
- String class_name = get_structure_name(class_str);
+ //String class_name = get_structure_name(class_str);
- index_str = index_str.replace(keyword, code_template.replace("$CODE$", class_str).replace("$NAME$", class_name));
+ index_str = index_str.replace(keyword, code_template.replace("$CODE$", class_str));
used_keywords.insert(c);
}