diff --git a/README.md b/README.md
index 2a693db90..871ac21f8 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@
## Table of Content
-# :books: List
+### :books: List
-# :scroll: String
+### :scroll: String
-# :heavy_division_sign: Math
+### :heavy_division_sign: Math
gcd
lcm
diff --git a/scripts/readme.py b/scripts/readme.py
index 130f266b0..13cd7de58 100644
--- a/scripts/readme.py
+++ b/scripts/readme.py
@@ -36,7 +36,7 @@ toAppend = ''
tag_dict = tagger()
toAppend += '## Table of Content \n'
for category in tag_dict:
- toAppend = toAppend + '# ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n '
+ toAppend = toAppend + '### ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n '
for snippet in tag_dict[category]:
toAppend += f'{snippet} \n'
toAppend += '
\n\n'