Interface MappedCharactersRule

interface MappedCharactersRule {
    parse: ((characters: string) => any);
    property: string | number | symbol;
    stringify: ((value: any) => string);
}

Properties

parse: ((characters: string) => any)

Parses the unescaped/processed characters. This will always be called, but characters may be an empty string if the element has no text content.

property: string | number | symbol
stringify: ((value: any) => string)

Converts the value to a string.