We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7e5ddd + e7a154f commit 4e8ba22Copy full SHA for 4e8ba22
lib/writers/docs.ts
@@ -12,11 +12,11 @@ export class DocsWriter implements Writer {
12
}
13
14
writeSection(section: string, prev: string): string {
15
- return `${prev}\n## ${section}\n`;
+ return `${prev}\n## ${section.split("<").join("<")}\n`;
16
17
18
writeDescriptionLine(line: string, prev: string): string {
19
- return `${prev}${line}\n`;
+ return `${prev}${line.split("<").join("<")}\n`;
20
21
22
writeVariable(variable: Variable, prev: string): string {
0 commit comments