docs: Update issue link in INSTALL.md and enhance key formatting in pr_description.py

This commit is contained in:
mrT23
2023-12-05 16:54:18 +02:00
parent 70a409abf1
commit 25d1e84b7f
2 changed files with 3 additions and 2 deletions

View File

@ -257,7 +257,8 @@ class PRDescription:
# except for the items containing the word 'walkthrough'
pr_body = ""
for idx, (key, value) in enumerate(self.data.items()):
pr_body += f"## {key}:\n"
key_publish = key.strip(':').replace('_', ' ').capitalize()
pr_body += f"## {key_publish}\n"
if 'walkthrough' in key.lower():
# for filename, description in value.items():
if self.git_provider.is_supported("gfm_markdown"):