Skip to content

Commit

Permalink
Simplify Markdown changelog format
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnks committed Mar 21, 2024
1 parent 4a6acc3 commit 61f70f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devel_doc/git-changelog
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ class MarkdownLog(PlainLog):
def _format_changeset(self, chset):
prefix, postfix, title, num, url = chset
if prefix:
prefix = '*{}:* '.format(HEADINGS[prefix])
prefix = '{}: '.format(HEADINGS[prefix])
if postfix:
postfix = '<sup>{}</sup> '.format(HEADINGS[postfix])
postfix = '[{}] '.format(HEADINGS[postfix])
return '* {}{} {}([#{}]({}))'.format(prefix, title, postfix, num, url)


Expand Down

0 comments on commit 61f70f6

Please sign in to comment.