File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1919 `@clalancette <https://github.com/clalancette >`_ for their efforts in improving
2020 the doxygen-breathe-exhale-sphinx ecosystem (and consequently, encouraging me to
2121 resume work on this project).
22+ - Escape ``* `` in template page titles (:pr: `118 `).
2223
2324v0.2.3
2425----------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -2487,7 +2487,8 @@ class view hierarchy (<a href="..."> for the ``createTreeView = True`` option).
24872487 title = title
24882488 )
24892489 if node .template_params or template_special :
2490- node .title = "Template {title}" .format (title = node .title )
2490+ node .title = "Template {title}" .format (
2491+ title = node .title .replace ('*' , '\*' ))
24912492
24922493 def adjustFunctionTitles (self ):
24932494 # keys: string (func.name)
You can’t perform that action at this time.
0 commit comments