UNPKG

rosaenlg-filter

Version:

Filtering feature of RosaeNLG

17 lines (16 loc) 615 B
/** * @license * Copyright 2019 Ludan Stoecklé * SPDX-License-Identifier: Apache-2.0 */ export interface ReplacedHtml { replaced: string; elts: string[]; } export declare const blockLevelElts: string[]; export declare const inlineElts: string[]; export declare function replaceHtml(input: string): ReplacedHtml; export declare function replacePlaceholders(input: string, elts: string[]): string; export declare function protectHtmlEscapeSeq(input: string): string; export declare function unProtectHtmlEscapeSeq(input: string): string; export declare function changeRenderDebug(input: string): string;