UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

13 lines (11 loc) 362 B
import { IHtmlEngineHelper } from './html-engine-helper.interface'; export class EscapeSimpleQuoteHelper implements IHtmlEngineHelper { public helperFunc(context: any, text: string) { if (!text) { return; } text = text.replace(/'/g, "\\'"); text = text.replace(/(\r\n|\n|\r)/gm, ''); return text; } }