]> 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 57c41c86590042f9f6a8a89a64ec569fd07348ba..86a524bd648a02c4b21aae545a0e156b622eb03d 100755 (executable)
--- 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 /;
+       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;