Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Oct 16, 2023
1 parent 2bae5e5 commit 0e58a7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tools/doc/process_md_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0e58a7a

Please sign in to comment.