sourcey 3.5.4 → 3.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,9 +4,9 @@ export function normalizeDoxygenDescription(description, markdown) {
|
|
|
4
4
|
if (!description)
|
|
5
5
|
return "";
|
|
6
6
|
if (!description.includes("{#ref "))
|
|
7
|
-
return description;
|
|
7
|
+
return stripMarkdownLinks(description);
|
|
8
8
|
const firstParagraph = extractFirstParagraph(markdown);
|
|
9
|
-
return firstParagraph || description;
|
|
9
|
+
return stripMarkdownLinks(firstParagraph || description);
|
|
10
10
|
}
|
|
11
11
|
export function rewriteGeneratedDoxygenIncludePath(includePath) {
|
|
12
12
|
const normalized = includePath.replace(/\\/g, "/");
|