Sigh, asciidoctor behaves differently from asciidoc

This commit is contained in:
Kovid Goyal
2016-12-08 10:37:06 +05:30
parent 57a0dc7f07
commit 520c5701c5
2 changed files with 29 additions and 29 deletions

View File

@@ -14,7 +14,7 @@ defns = []
for line in open('kitty/kitty.conf'):
if line.startswith('map '):
_, sc, name = line.split(maxsplit=3)
defns.append(':sc_{}: `{}`'.format(name, sc))
defns.append(':sc_{}: {}'.format(name, sc))
defns = '\n'.join(defns)