Skip to content

Commit

Permalink
Fix CLI options being output with emdashes
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlinville authored Feb 4, 2025
1 parent 966cf24 commit 35168c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def get_options_markdown(options):
arg = parse_description(element)
desc = element[1]
# concatenate all the options
options_md += f"""| {arg} | {desc} |\n"""
options_md += f"""| `{arg}` | {desc} |\n"""

options_md = (
"""**Options**\n\n| **Option** | **Description** |\n| :--- | :--- |\n"""
Expand Down

0 comments on commit 35168c9

Please sign in to comment.