Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Expat/Expat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1431,7 +1431,7 @@ false otherwise.

=item isname

This method returns if the object is an element name.
This method returns true if the object is an element name.

=item ischoice

Expand Down
15 changes: 5 additions & 10 deletions Parser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -748,16 +748,11 @@ If Fixed is true, then this is a fixed attribute.
This handler is called for DOCTYPE declarations. Name is the document type
name. Sysid is the system id of the document type, if it was provided,
otherwise it's undefined. Pubid is the public id of the document type,
which will be undefined if no public id was given. Internal is the internal
subset, given as a string. If there was no internal subset, it will be
undefined. Internal will contain all whitespace, comments, processing
instructions, and declarations seen in the internal subset. The declarations
will be there whether or not they have been processed by another handler
(except for unparsed entities processed by the Unparsed handler). However,
comments and processing instructions will not appear if they've been processed
by their respective handlers.

=head2 * DoctypeFin (Parser)
which will be undefined if no public id was given. Internal will be
true or false, indicating whether or not the doctype declaration contains
an internal subset.

=head2 * DoctypeFin (Expat)

This handler is called after parsing of the DOCTYPE declaration has finished,
including any internal or external DTD declarations.
Expand Down
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,16 +411,11 @@ If Fixed is true, then this is a fixed attribute.
This handler is called for DOCTYPE declarations. Name is the document type
name. Sysid is the system id of the document type, if it was provided,
otherwise it's undefined. Pubid is the public id of the document type,
which will be undefined if no public id was given. Internal is the internal
subset, given as a string. If there was no internal subset, it will be
undefined. Internal will contain all whitespace, comments, processing
instructions, and declarations seen in the internal subset. The declarations
will be there whether or not they have been processed by another handler
(except for unparsed entities processed by the Unparsed handler). However,
comments and processing instructions will not appear if they've been processed
by their respective handlers.

## \* DoctypeFin (Parser)
which will be undefined if no public id was given. Internal will be
true or false, indicating whether or not the doctype declaration contains
an internal subset.

## \* DoctypeFin (Expat)

This handler is called after parsing of the DOCTYPE declaration has finished,
including any internal or external DTD declarations.
Expand Down
Loading