diff --git a/README.md b/README.md index 93f6f8ff..7f0d91b0 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ __Table of contents__ * [include assets](#include-assets) * [handle events](#handle-events) * [Complete demo - advanced layout, FPS, theme, etc:](#complete-demo---advanced-layout-fps-theme-etc) -* [Main signature: use `int main(int, char**)`](#main-signature-use-`int-mainint-char**`) +* [Main signature: use `int main(int, char**)`](#main-signature-use-`int-mainint-char`) * [Build instructions](#build-instructions) * [Supported platforms and backends](#supported-platforms-and-backends) * [Clone the repository](#clone-the-repository) diff --git a/tools/doc/process_md_docs.py b/tools/doc/process_md_docs.py index 156a09f7..a611047c 100755 --- a/tools/doc/process_md_docs.py +++ b/tools/doc/process_md_docs.py @@ -8,7 +8,7 @@ def parse_header_line(header_line): level = len(header_line.split(" ")[0]) title = header_line[level + 1 :].rstrip() anchor_title = title.lower().replace(" ", "-") - ignored_chars = [":", "+", ",", "!", '"', "(", ")", "?"] + ignored_chars = [":", "+", ",", "!", '"', "(", ")", "?", "*"] for ignored_char in ignored_chars: anchor_title = anchor_title.replace(ignored_char, "") return level, title, anchor_title