An object that handles html sanitization.

interface ISanitizer {
    getAutolink?(): boolean;
    sanitize(dirty, options?): string;
}

Implemented by

    Methods