diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-03-12 15:09:33 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-03-12 15:09:33 -0500 |
commit | 0daa7a122f5e5c51fbd091a1f0c7b720b59a6172 (patch) | |
tree | 2fe47e038107af8c3cf126deff0f454e7a90677b | |
parent | edec9514f49bf335e8c71a19b169ccbba6a0ba95 (diff) |
fix escaping of indented dot
-rwxr-xr-x | mdwn2man | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |