Skip to content

Commit

Permalink
removing env name in doc title
Browse files Browse the repository at this point in the history
  • Loading branch information
nolan committed Jul 26, 2024
1 parent 721af92 commit 7ec9939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gen-wiki.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def generate_markdown_table(header, data):
table += "| " + " | ".join(['---'] * len(headers)) + " |\n"

for item in data:
row = "| " + " | ".join(str(item.get(h, '')) for h in headers) + " |\n"
row = "| " + " | ".join(f"`{str(item.get(h, ''))}`" for h in headers) + " |\n"
table += row

table += "\n"
Expand Down

0 comments on commit 7ec9939

Please sign in to comment.