Skip to content

Commit

Permalink
Removed extra space in item links. Fixes doorstop-dev#469.
Browse files Browse the repository at this point in the history
  • Loading branch information
neerdoc authored and lbiaggi committed Mar 13, 2024
1 parent cae7107 commit dfad07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doorstop/core/publishers/markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def create_matrix(self, directory):

def format_attr_list(self, item, linkify):
"""Create a Markdown attribute list for a heading."""
return " {{#{u} }}".format(u=item.uid) if linkify else ""
return " {{#{u}}}".format(u=item.uid) if linkify else ""

def format_ref(self, item):
"""Format an external reference in Markdown."""
Expand Down

0 comments on commit dfad07e

Please sign in to comment.