We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dff181a commit 2c53c01Copy full SHA for 2c53c01
scripts/gen-markdown-patchlist.py
@@ -15,12 +15,11 @@
15
if key.startswith("modernfix.option.mixin."):
16
option_names.append(key.replace("modernfix.option.", ""))
17
option_names.sort()
18
- print("# Summary of Patches - " + branch_name)
19
print()
20
for option in option_names:
21
option_description = lang_obj.get("modernfix.option." + option)
22
option_friendly_name = lang_obj.get("modernfix.option.name." + option)
23
- print(f"# `{option}`")
+ print(f"### `{option}`")
24
25
if option_description is not None:
26
print(option_description)
0 commit comments