wikiheaders: Markdown should use '-' for unordered lists, not '*'.

pull/9445/merge
Ryan C. Gordon 2024-05-05 01:21:02 -04:00
parent 8f4cab0f83
commit a16b76cf80
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 1 deletions

View File

@ -1628,7 +1628,7 @@ if ($copy_direction == 1) { # --copy-to-headers
if ($wikitype eq 'mediawiki') {
$sections{'See Also'} .= ":[[$sa]]\n";
} elsif ($wikitype eq 'md') {
$sections{'See Also'} .= "* [$sa]($sa)\n";
$sections{'See Also'} .= "- [$sa]($sa)\n";
} else { die("Expected wikitype '$wikitype'"); }
}
}