diff options
-rwxr-xr-x | Build/mdwn2man | 1 | ||||
-rw-r--r-- | doc/todo/mdwn2man:_make_backticks_bold.mdwn | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Build/mdwn2man b/Build/mdwn2man index ba5919b38..7f819adf7 100755 --- a/Build/mdwn2man +++ b/Build/mdwn2man @@ -8,6 +8,7 @@ print ".TH $prog $section\n"; while (<>) { s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg; + s/\`([^\`]*)\`/\\fB$1\\fP/g; s/\`//g; s/^\s*\./\\&./g; if (/^#\s/) { diff --git a/doc/todo/mdwn2man:_make_backticks_bold.mdwn b/doc/todo/mdwn2man:_make_backticks_bold.mdwn index 87c228ab8..21707a309 100644 --- a/doc/todo/mdwn2man:_make_backticks_bold.mdwn +++ b/doc/todo/mdwn2man:_make_backticks_bold.mdwn @@ -18,3 +18,5 @@ index ba5919b..7f819ad 100755 """]] I tested it against the git-annex manpage and it seems to work well. --[[anarcat]] + +> [[done]], thanks --[[Joey]] |