If there are HTML tags within XML tags, the Jackson XML parser will assign incorrect values to the content. <img width="1912" alt="image" src="https://github.com/FasterXML/jackson-dataformat-xml/assets/26239751/8d1584f3-edda-4b77-a274-8e830199c81d"> <img width="986" alt="image" src="https://github.com/FasterXML/jackson-dataformat-xml/assets/26239751/efc80cfb-fb2c-464b-bc68-446d695d5653"> ``` @Data public static class Abstract { @JacksonXmlElementWrapper(useWrapping = false) @JacksonXmlProperty(localName = "AbstractText") private List<AbstractText> abstractTextList; } @Data public static class AbstractText { @JacksonXmlProperty(isAttribute = true) private String Label; @JacksonXmlProperty(isAttribute = true, localName = "NlmCategory") private String category; @JacksonXmlText private String value; } ```