You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conversion fails and throws a PostprocessException because CcdaDataParser.cs does not escape double quote characters inside of XText nodes from the incoming xml document.
Example problematic xml:
<value xsi:type="ST">
* Adjustment of the mA and/or kV according to patient size (this
includes techniques or standardized protocols for targeted exams
where dose is matched to indication / reason for exam; i.e.
extremities or head ) * Use of iterative reconstruction technique"
</value>
Using Ccda Processor with DischargeSummary template. I've added a step to the parser locally to replace " -> \" and the fix works.
The text was updated successfully, but these errors were encountered:
Hi,
you can use string filter: 'escape' in CCDA templates which will return string with special chars escaped.
e.g. "div":"\<div>{{ component.section.title.displayName| escape }}\</div>",
Conversion fails and throws a
PostprocessException
becauseCcdaDataParser.cs
does not escape double quote characters inside of XText nodes from the incoming xml document.Example problematic xml:
Using Ccda Processor with DischargeSummary template. I've added a step to the parser locally to replace
"
->\"
and the fix works.The text was updated successfully, but these errors were encountered: