You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In an Android xml string file it's possible that an entry contains a CDATA block.
An example for that: <string name="html"><![CDATA[<p>Text<p>]]></string>
After running the converter, the CDATA block is removed in the resulting csv.
result: html,<p>Text<p>
If you convert the csv back to a xml the CDATA block is still missing and the xml file is completely wrong and it end in an error in android cause plain xml is not allowed.
result: <string name="html"><p>Text<p></string>
The text was updated successfully, but these errors were encountered:
In an Android xml string file it's possible that an entry contains a CDATA block.
An example for that:
<string name="html"><![CDATA[<p>Text<p>]]></string>
After running the converter, the CDATA block is removed in the resulting csv.
result:
html,<p>Text<p>
If you convert the csv back to a xml the CDATA block is still missing and the xml file is completely wrong and it end in an error in android cause plain xml is not allowed.
result:
<string name="html"><p>Text<p></string>
The text was updated successfully, but these errors were encountered: