entitydecl(name, decl)
Instance Public methods
<!ENTITY â¦> The argument passed to this method is an array of the entity declaration. It can be in a number of formats, but in general it returns (example, result):
1 2 3 4 5 6 7 8 9 10 11 12 | <! ENTITY % YN '"Yes"' > [ "%" , "YN" , "'\"Yes\"'" , "\"" ] <! ENTITY % YN 'Yes' > [ "%" , "YN" , "'Yes'" , "s" ] <! ENTITY WhatHeSaid "He said %YN;" > [ "WhatHeSaid" , "\"He said %YN;\"" , "YN" ] <! ENTITY open-hatch PUBLIC "-//Textuality//TEXT Standard open-hatch boilerplate//EN" "http://www.textuality.com/boilerplate/OpenHatch.xml" > [ "open-hatch" , "PUBLIC" , "\"-//Textuality//TEXT Standard open-hatch boilerplate//EN\"" , "\"http://www.textuality.com/boilerplate/OpenHatch.xml\"" ] <! ENTITY hatch-pic SYSTEM "../grafix/OpenHatch.gif" NDATA gif> [ "hatch-pic" , "SYSTEM" , "\"../grafix/OpenHatch.gif\"" , "\n\t\t\t\t\t\t\tNDATA gif" , "gif" ] |
Please login to continue.