From: Joey Hess <joey@gnu.kitenet.net>
Date: Fri, 12 Mar 2010 20:09:33 +0000 (-0500)
Subject: fix escaping of indented dot
X-Git-Tag: 3.20100312~1
X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/0daa7a122f5e5c51fbd091a1f0c7b720b59a6172?ds=inline;hp=-c

fix escaping of indented dot
---

0daa7a122f5e5c51fbd091a1f0c7b720b59a6172
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;