document how to include= a path with a space in it
POSIX character classes allowed in globs was a surprise, but just happened to fall out of the implementation in a way that seems to behave correctly. mdwn2man has to be tweaked to render the example properly. The line I modified is the one that strips ikiwiki wikilinks out of the man page. Sponsored-by: Graham Spencer on Patreon
This commit is contained in:
parent
0da0e2efcc
commit
96c372ac85
4 changed files with 30 additions and 1 deletions
|
@ -7,7 +7,7 @@ my $section=shift;
|
|||
print ".TH $prog $section\n";
|
||||
|
||||
while (<>) {
|
||||
s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg;
|
||||
s{(\\?)\[\[([^:\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg;
|
||||
s/\`([^\`]*)\`/\\fB$1\\fP/g;
|
||||
s/\`//g;
|
||||
s/^ *\./\\&./g;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue