pydantic-xml
pydantic-xml copied to clipboard
[Question] Is there any way of building xml with <![CDATA[...]]> field?
Hi. I'm using pydantic-xml to build xml files from json. I faced a problem. I need to add a value and I tried to do it manually, simply using f-strings. But after xml_model.to_xml() my < and > is being replaced by < and >
How can I avoid it?