@jhulford/libxmljs - v0.0.1-alpha.3
    Preparing search index...

    Type Alias XMLParseOptions

    XMLParseOptions: {
        baseUrl?: string;
        encoding?: string;
        flags?: XMLParseFlags[];
        nonet?: boolean;
        preserveCDATA?: boolean;
        preserveWhitespace?: boolean;
        recover?: boolean;
        replaceEntities?: boolean;
        url?: string;
        validateAttributes?: boolean;
        validateEntities?: boolean;
    } & {
        blanks?: boolean;
        cdata?: boolean;
        dtdattr?: boolean;
        dtdvalid?: boolean;
        noblanks?: true;
        nocdata?: true;
        noent?: boolean;
    }

    Type Declaration

    • OptionalbaseUrl?: string
    • Optionalencoding?: string
    • Optionalflags?: XMLParseFlags[]
    • Optionalnonet?: boolean
    • OptionalpreserveCDATA?: boolean

      Preserve CDATA tags <![CDATA[ ... ]]> surrounding text content

      true
      
    • OptionalpreserveWhitespace?: boolean

      Preserve empty text nodes and original spacing

      true
      
    • Optionalrecover?: boolean
    • OptionalreplaceEntities?: boolean

      Replace each XML character entity reference with its corresponding value (see http://www.xmlsoft.org/entities.html)

      Any DTDs will be automatically loaded in order to resolve externally defined entities

      false
      
    • Optionalurl?: string
    • OptionalvalidateAttributes?: boolean

      Validate that all elements have a complete and valid set of attributes

      Any DTDs will be automatically loaded in order to resolve externally defined element definitions

      false
      
    • OptionalvalidateEntities?: boolean

      Validate that all entitiy references can be resolved

      Any DTDs will be automatically loaded in order to resolve externally defined entities

      false
      
    • Optionalblanks?: boolean

      Use preserveWhitespace instead

    • Optionalcdata?: boolean

      Use preserveCDATA instead

    • Optionaldtdattr?: boolean

      Use validateAttributes instead

    • Optionaldtdvalid?: boolean

      Use validateEntities instead

    • Optionalnoblanks?: true

      Use preserveWhitespace instead

    • Optionalnocdata?: true

      Use preserveCDATA instead

    • Optionalnoent?: boolean

      Use replaceEntities instead