From: Joey Hess Date: Fri, 12 Mar 2010 20:09:33 +0000 (-0500) Subject: fix escaping of indented dot X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/0daa7a122f5e5c51fbd091a1f0c7b720b59a6172 fix escaping of indented dot --- diff --git a/mdwn2man b/mdwn2man index e4ba5aadf..090174534 100755 --- a/mdwn2man +++ b/mdwn2man @@ -9,7 +9,7 @@ print ".TH $prog $section\n"; while (<>) { s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg; s/\`//g; - s/^\./\\&./g; + s/^\s*\./\\&./g; if (/^#\s/) { s/^#\s/.SH /; <>; # blank;