aboutsummaryrefslogtreecommitdiff
path: root/mdwn2man
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2010-03-12 15:09:33 -0500
committerJoey Hess <joey@gnu.kitenet.net>2010-03-12 15:09:33 -0500
commit0daa7a122f5e5c51fbd091a1f0c7b720b59a6172 (patch)
tree2fe47e038107af8c3cf126deff0f454e7a90677b /mdwn2man
parentedec9514f49bf335e8c71a19b169ccbba6a0ba95 (diff)
downloadikiwiki-0daa7a122f5e5c51fbd091a1f0c7b720b59a6172.tar
ikiwiki-0daa7a122f5e5c51fbd091a1f0c7b720b59a6172.tar.gz
fix escaping of indented dot
Diffstat (limited to 'mdwn2man')
-rwxr-xr-xmdwn2man2
1 files changed, 1 insertions, 1 deletions
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;