dcarbone / php-fhir

Tools for consuming data from a FHIR server with PHP
Apache License 2.0
129 stars 40 forks source link

Ensure XHTML types have the appropriate xmlns tags #99

Closed dcarbone closed 6 months ago

dcarbone commented 6 months ago

Missing xmlns:

Example 1:

<!-- source -->
<div xmlns="http://www.w3.org/1999/xhtml">[Put rendering here]</div>

<!-- php-fhir -->
<div>[Put rendering here]</div>

Example 2:

<!-- source -->
<div xmlns="http://www.w3.org/1999/xhtml"/>\n

<!-- php-fhir -->
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:default="http://www.w3.org/1999/xhtml"/>\n