Commit 45d128db00aa7a85077eb8175d6284405079aac3

Ryan C. Gordon 2021-03-24T22:36:06

wikiheaders: Fixed double-wikify call.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/build-scripts/wikiheaders.pl b/build-scripts/wikiheaders.pl
index a6422d4..1a2ced9 100755
--- a/build-scripts/wikiheaders.pl
+++ b/build-scripts/wikiheaders.pl
@@ -682,7 +682,7 @@ if ($copy_direction == 1) {  # --copy-to-headers
                     last if $subline =~ /\A\\/;  # some sort of doxygen command, assume we're past this thing.
                     last if $subline eq '';  # empty line, this param is done.
                     shift @doxygenlines;  # dump this line from the array; we're using it.
-                    $desc .= wikify($wikitype, " $subline");
+                    $desc .= " $subline";
                 }
 
                 # We need to know the length of the longest string to make Markdown tables, so we just store these off until everything is parsed.