X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/773731743df52d2ef2d8ce93c095be981bb9bfc8..24961ae9f2664e76abd625c6bd233674a54cdd7a:/mdwn2man diff --git a/mdwn2man b/mdwn2man index 57c41c865..e78a4d18c 100755 --- a/mdwn2man +++ b/mdwn2man @@ -1,12 +1,19 @@ #!/usr/bin/perl # Warning: hack -print ".TH ikiwiki 1\n"; +my $prog=shift; +my $section=shift; + +print ".TH $prog $section\n"; while (<>) { s{(\\?)\[\[([^\s\]]+)\]\]}{$1 ? "[[$2]]" : $2}eg; - s/^#\s/.SH /; + if (/^#\s/) { + s/^#\s/.SH /; + <>; # blank; + } s/^\s+//; + s/-/\\-/g; s/^Warning:.*//g; s/^$/.PP\n/; s/\`//g;