I have a Pyramid app that uses Chameleon. I need to declare some attributes in my DOCTYPE, like so:
<!DOCTYPE public html .........
[
<!ATTLIST tag attributes CDATA #IMPLIED>
]>
When I add this to my template, id doesn't get rendered properly and my browser draws "]>".
When I remove the ATTLIST and only do <!DOCTYPE public html .........>
, everything works.
How can I tell Chameleon to not parse the ATTLIST section and copy it as is?