Skip to content

Commit

Permalink
clean doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Oct 16, 2023
1 parent 7470f6e commit d1c3946
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ project(helloworld_with_helloimgui)
set(CMAKE_CXX_STANDARD 17)
# Build hello_imgui
# 1/ Option 1: if you do not wish to include hello_imgui in your project folders, fetch it at build time
# 1/ Option 1: fetch hello_imgui at build time (and thus avoid adding it as a subfolder or submodule)
include(FetchContent)
FetchContent_Declare(hello_imgui GIT_REPOSITORY https://github.com/pthom/hello_imgui.git GIT_TAG master)
FetchContent_MakeAvailable(hello_imgui)
Expand Down Expand Up @@ -182,7 +182,7 @@ __Table of contents__
* [Hello ImGui](#hello-imgui)
* [Features](#features)
* [Get started in 5 minutes](#get-started-in-5-minutes)
* [Do you need more widgets, or do you want to use ImGui with python?](#do-you-need-more-widgets-or-do-you-want-to-use-imgui-with-python?)
* [Do you need more widgets, or do you want to use ImGui with python?](#do-you-need-more-widgets-or-do-you-want-to-use-imgui-with-python)
* [Full usage instructions and API](#full-usage-instructions-and-api)
* [Online interactive example applications](#online-interactive-example-applications)
* [Demo - handle events and include assets:](#demo---handle-events-and-include-assets)
Expand Down
2 changes: 1 addition & 1 deletion README.src.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ project(helloworld_with_helloimgui)
set(CMAKE_CXX_STANDARD 17)
# Build hello_imgui
# 1/ Option 1: if you do not wish to include hello_imgui in your project folders, fetch it at build time
# 1/ Option 1: fetch hello_imgui at build time (and thus avoid adding it as a subfolder or submodule)
include(FetchContent)
FetchContent_Declare(hello_imgui GIT_REPOSITORY https://github.com/pthom/hello_imgui.git GIT_TAG master)
FetchContent_MakeAvailable(hello_imgui)
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 d1c3946

Please sign in to comment.