Vinyl
    Preparing search index...

    Interface MappedCharactersRule

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

    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.