@federicocarboni/saxe
    Preparing search index...

    Interface Doctype

    Document type declaration.

    <!DOCTYPE example PUBLIC "-//Example//example doc" "http://example.org/example.dtd">
    
    interface Doctype {
        name: string;
        publicId?: string;
        systemId?: string;
    }
    Index

    Properties

    name: string

    Name in the document type declaration.

    publicId?: string

    Public identifier in the document type declaration, if present.

    All whitespace in the public identifier is normalized to single space characters, and leading and trailing whitespace is removed.

    systemId?: string

    System identifier in the document type declaration, if present.

    It is meant to be converted to a URI reference relative to the document entity, the parser does not process it as external markup declarations are not supported.

    System identifiers may contain characters that, according to IETF RFC 3986, must be escaped before a URI can be used to retrieve the referenced resource.