We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4082902 commit 74e2651Copy full SHA for 74e2651
1 file changed
src/xmlparser/DocTypeReader.js
@@ -19,6 +19,7 @@ function readDocType(xmlData, i){
19
if (xmlData[i] === '<' && !comment) { //Determine the tag type
20
if( hasBody && isEntity(xmlData, i)){
21
i += 7;
22
+ let entityName, val;
23
[entityName, val,i] = readEntityExp(xmlData,i+1);
24
if(val.indexOf("&") === -1) //Parameter entities are not supported
25
entities[ validateEntityName(entityName) ] = {
0 commit comments