xmlparser.StartDoctypeDeclHandler(doctypeName, systemId, publicId, has_internal_subset)
Called when Expat begins parsing the document type declaration (<!DOCTYPE
...
). The doctypeName is provided exactly as presented. The systemId and publicId parameters give the system and public identifiers if specified, or None
if omitted. has_internal_subset will be true if the document contains and internal document declaration subset. This requires Expat version 1.2 or newer.
Please login to continue.