Welcome! Please see the About page for a little more info on how this works.

0 votes
in data.xml by
recategorized by

Currently when parsing with :coalescing false :replacing-entity-references false entity references are not present in tree. For example, parsing this XML:

<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>
<!DOCTYPE foo [
<!ELEMENT foo ANY>
<!ENTITY ref \"my reference\">]>
<foo>&ref;</foo>

results in this tree without the reference:

#xml/element{:tag :foo}

I have a patch which keeps entity references in tree as keywords, but I'm not sure how to proceed with it if I don't have a Jira account. Do I understand correctly that the process is to leave a post here, and wait for a developer to create a ticket? How can I post the patch for public review?

1 Answer

0 votes
by
selected by
 
Best answer

Logged as https://clojure.atlassian.net/browse/DXML-68

Seems like you found the contributor info and I'll work with you over there to submit the patch on it.

...