diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e69de29bb..242e1ecb1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -0,0 +1,11 @@ +Validator Fixes: +* Check that there are no nested block HTML elements in an HTML paragraph +* create a warning for UCUM annotations + +Other Changes: +* Fix some issues when converting Allergy Intolerance 3 <-> 4 +* Fix issues generating invsalid HTML +* Fix up FHIRPath to pass latest test cases +* Bundle rendering improvements +* Give code interface for control over validation rules +* add support for rendering choice groups (CDA) diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xhtml/XhtmlParser.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xhtml/XhtmlParser.java index 9ee402f73..af088b66b 100644 --- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xhtml/XhtmlParser.java +++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/xhtml/XhtmlParser.java @@ -536,8 +536,9 @@ private boolean elementIsOk(String name) throws FHIRFormatError { return; else { - if (mustBeWellFormed) + if (mustBeWellFormed) { throw new FHIRFormatError("Malformed XHTML: Found \"\" expecting \"\""+descLoc()); + } for (int i = parents.size() - 1; i >= 0; i--) { if (parents.get(i).getName().equals(n))