Details
Description
When using CDATA. CDATA elements are skipped by the parser.
In fact someone on stack overflow was asking this same question a few months ago.
https://stackoverflow.com/questions/57829034/why-is-apache-hadoop-configuration-module-ignores-cdata
<property> <name>test.cdata</name> <value>hello <![CDATA[world]]></value> </property>
conf.get("test.cdata") parses as 'hello ' instead of 'hello world'