Skip to content

Commit

Permalink
Fix build after changes in pane doc (#1123)
Browse files Browse the repository at this point in the history
- Redo doc for pane
- Update Release Notes
- "Better"? buttons for Reference|VisElements
- other tiny fixes
- Fix build

---------

Co-authored-by: jrobinAV <jeanrobin.medori@avaiga.com>
  • Loading branch information
FabienLelaquais and jrobinAV committed Sep 16, 2024
1 parent e483afd commit 6d43f8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions mkdocs.yml_template
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ repo_name: taipy
copyright: © 2021-[YEAR] Avaiga
nav:
- "Tutorials":
- "Tutorials": tutorials/index.md
- "Fundamentals":
- "Fundamentals": tutorials/fundamentals/index.md
- "Getting Started": tutorials/getting_started/index.md
Expand Down
4 changes: 2 additions & 2 deletions tools/postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ def on_post_build(env):
)
new_title = "Taipy p" + new_title[1:]
before = (
before[: t_match.start()]
before[: match.start()]
+ new_title
+ before[t_match.end() :]
+ before[match.end() :]
)
html_content = (
before
Expand Down

0 comments on commit 6d43f8f

Please sign in to comment.