Add release notes
This commit is contained in:
parent
03fb727894
commit
1ebd74f0d0
|
@ -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)
|
|
@ -536,8 +536,9 @@ private boolean elementIsOk(String name) throws FHIRFormatError {
|
|||
return;
|
||||
else
|
||||
{
|
||||
if (mustBeWellFormed)
|
||||
if (mustBeWellFormed) {
|
||||
throw new FHIRFormatError("Malformed XHTML: Found \"</"+n.getName()+">\" expecting \"</"+node.getName()+">\""+descLoc());
|
||||
}
|
||||
for (int i = parents.size() - 1; i >= 0; i--)
|
||||
{
|
||||
if (parents.get(i).getName().equals(n))
|
||||
|
|
Loading…
Reference in New Issue