txty-io / texterify

The translation and localization management system.
https://texterify.com
Other
175 stars 14 forks source link

Fix Android Export #31

Closed bleeding182 closed 3 years ago

bleeding182 commented 3 years ago

The Android export escapes characters way too aggressively breaking simple HTML markup styling (bold, italics, etc) for text.

Observed behavior:

When I input Hello <b>World</b>! (no "HTML" option) the export generates Hello &lt;b&gt;World&lt;/b&gt;!.

Expected behavior:

It should generate Hello <b>World</b>!

When a string is not marked as HTML I expect to receive the same String in the output (with some special characters escaped)

chrztoph commented 3 years ago

Fixed. Thank you!