Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IDtdOptions

The options associated with the XML document type definition (DTD). An example of an XML document type definition is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

Hierarchy

  • IDtdOptions

Implemented by

Index

Properties

Properties

Optional include

include: boolean

If include is true, an XML DTD is included in the resulting XML. If left undefined, the default value is true.

Optional name

name: string

The name of the DTD. This value cannot be left undefined if include is true.

Optional pubId

pubId: string

The public identifier of the DTD, excluding quotation marks. If pubId is defined, sysId must be defined as well. If left undefined, no public identifier is included.

Optional sysId

sysId: string

The system identifier of the DTD, excluding quotation marks. If left undefined, no system identifier is included.

Generated using TypeDoc