Commit fef07d6
committed
docs: avoid pipe character in codeSplitting example to fix broken rendering (#8391)
Closed #8380
The root cause: when typedoc processes `{@include}` content, it re-parses it as a JSDoc comment. The `|` character inside the included markdown gets URL-encoded to `%7C` during this process (typedoc's inline tag handling interprets `|` specially). Since the pipe was inside a code block in the markdown, it shouldn't have been modified, but typedoc's JSDoc parser mangles it before the markdown code block structure is recognized. Avoiding `|` in `@include`-d files sidesteps this typedoc limitation.1 parent 62fe92f commit fef07d6
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
0 commit comments