]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - mdwn2man
* Add a templates page to the basewiki. It will automatically list all
[git.ikiwiki.info.git] / mdwn2man
index 8c70c87c157217f6dc108b092e7b21567a658265..86a524bd648a02c4b21aae545a0e156b622eb03d 100755 (executable)
--- a/mdwn2man
+++ b/mdwn2man
@@ -7,9 +7,13 @@ my $section=shift;
 print ".TH $prog $section\n";
 
 while (<>) {
-       s{(\\?)\[\[([^\s\]]+)\]\]}{$1 ? "[[$2]]" : $2}eg;
-       s/^#\s/.SH /;
+       s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]])?\]\]}{$1 ? "[[$2]]" : $2}eg;
+       if (/^#\s/) {
+               s/^#\s/.SH /;
+               <>; # blank;
+       }
        s/^\s+//;
+       s/-/\\-/g;
        s/^Warning:.*//g;
        s/^$/.PP\n/;
        s/\`//g;