Commit 22d7b39f authored by Tebjan Halm's avatar Tebjan Halm
Browse files

Merge pull request #73 from Guymestef/master

Reading EntityReference on open when use as a node
parents 2f2a1e02 87e25aa7
......@@ -250,6 +250,10 @@ namespace Svg
case XmlNodeType.Text:
value.Append(reader.Value);
break;
case XmlNodeType.EntityReference:
reader.ResolveEntity();
value.Append(reader.Value);
break;
}
}
catch (Exception exc)
......@@ -411,4 +415,4 @@ namespace Svg
}
}
}
\ No newline at end of file
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment