UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

11 lines (9 loc) 370 B
import { IHtmlEngineHelper } from './html-engine-helper.interface'; const Handlebars = require('handlebars'); export class CleanParagraphHelper implements IHtmlEngineHelper { public helperFunc(context: any, text: string) { text = text.replace(/<p>/gm, ''); text = text.replace(/<\/p>/gm, ''); return new Handlebars.SafeString(text); } }