man: Use \- to denote dashes. Fixes #512

This commit is contained in:
Mike Swanson 2015-03-25 16:06:11 -07:00
parent 70e39d1380
commit ad027ef6db

View file

@ -425,6 +425,8 @@ def manpage_output(targets, template_file):
for t in targets:
content += t.manpage_output() + "\n"
content = content.replace("-", "\\-")
print_template(template_file, content)
def wiki_output(targets, template):