From a16b76cf8099383812e62b4e4dca6b0873bf0920 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 5 May 2024 01:21:02 -0400 Subject: [PATCH] wikiheaders: Markdown should use '-' for unordered lists, not '*'. --- build-scripts/wikiheaders.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/wikiheaders.pl b/build-scripts/wikiheaders.pl index 3deed13498..8fdd604438 100755 --- a/build-scripts/wikiheaders.pl +++ b/build-scripts/wikiheaders.pl @@ -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'"); } } }