Name
UnparsedEntityDecl -- parser has detected an unparsed entity declaration
Synopsis
UnparsedEntityDecl(p, name$, base$, sysid$, pubid$, notation$)
Function
This function is called when the parser receives declarations of unparsed entities. These are entity declarations that have a notation (NDATA) field. As an example, in the chunk

 
<!ENTITY logo SYSTEM "images/logo.gif" NDATA gif>

the name$ parameter would be "logo", sysid$ would be "images/logo.gif" and notation$ would be "gif". For this example the pubid$ parameter would be Nil. The base$ parameter would be whatever has been set with parser:SetBase(). If not set, it would be Nil.

Note that UnparsedEntityDecl() is obsolete and you should use EntityDecl() instead.

Parameters
p
parser handle
name$
entity name
base$
base to use for relative system identifiers
sysid$
system ID
pubid$
public ID
notation$
notation name

Show TOC