Skip to content

Commit

Permalink
Make spaces markdown tag use nbsp
Browse files Browse the repository at this point in the history
  • Loading branch information
pehala committed Jan 26, 2024
1 parent 21dbbdd commit 98b5b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chords/plugins/spaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def parse_chords(inline, m, state: InlineState):

def render_chords(renderer, text):
"""Renders tag into HTML"""
return r" " * int(text)
return r" " * int(text)


def spaces(md):
Expand Down

0 comments on commit 98b5b67

Please sign in to comment.