aboutsummaryrefslogtreecommitdiff
path: root/mdwn2man
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-05-30 17:50:59 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-05-30 17:50:59 -0400
commitb5748518e55d53d6e0474b18e93ae10622bb0e9d (patch)
tree0290ae1392ec3d7fa3267e72faf89efc67b1b7b7 /mdwn2man
parente943812dc9802d134f2d9627a6c4fc94fe9c26f9 (diff)
downloadikiwiki-b5748518e55d53d6e0474b18e93ae10622bb0e9d.tar
ikiwiki-b5748518e55d53d6e0474b18e93ae10622bb0e9d.tar.gz
escape leading periods
Diffstat (limited to 'mdwn2man')
-rwxr-xr-xmdwn2man3
1 files changed, 2 insertions, 1 deletions
diff --git a/mdwn2man b/mdwn2man
index d3db43165..420cd4ef3 100755
--- a/mdwn2man
+++ b/mdwn2man
@@ -8,6 +8,8 @@ print ".TH $prog $section\n";
while (<>) {
s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg;
+ s/\`//g;
+ s/^\./\\./g;
if (/^#\s/) {
s/^#\s/.SH /;
<>; # blank;
@@ -16,7 +18,6 @@ while (<>) {
s/-/\\-/g;
s/^Warning:.*//g;
s/^$/.PP\n/;
- s/\`//g;
s/^\*\s+(.*)/.IP "$1"/;
next if $_ eq ".PP\n" && $skippara;
if (/^.IP /) {