mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 22:25:32 -04:00
Fix keyword list entries with underscores
This commit is contained in:
parent
f437168fd5
commit
a7dbf5514b
1 changed files with 3 additions and 1 deletions
|
|
@ -148,7 +148,9 @@ def process_section(
|
|||
output += ["## Keywords", ""]
|
||||
for keyword in keywords:
|
||||
keyword_name = get_name(keyword)
|
||||
output += [f"* <a href='#{keyword_name}'>{keyword_name}</a>"]
|
||||
output += [
|
||||
f"* <a href='#{keyword_name}'>" f"{escape_markdown(keyword_name)}</a>"
|
||||
]
|
||||
output += [""]
|
||||
# Render keywords
|
||||
output += ["## Keyword descriptions", ""]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue