Like xmlDocComment but skips XML escaping — use only for codegen-controlled strings that already contain valid XML tags.
(text: string, indent: string)
| 183 | |
| 184 | /** Like xmlDocComment but skips XML escaping — use only for codegen-controlled strings that already contain valid XML tags. */ |
| 185 | function rawXmlDocSummary(text: string, indent: string): string[] { |
| 186 | const line = ensureTrailingPunctuation(text.trim()); |
| 187 | return [`${indent}/// <summary>${line}</summary>`]; |
| 188 | } |
| 189 | |
| 190 | /** Emits a summary (from description or fallback) and, when a real description exists, a remarks line with the fallback. */ |
| 191 | function xmlDocCommentWithFallback(description: string | undefined, fallback: string, indent: string): string[] { |
no test coverage detected
searching dependent graphs…