Closed pastelmind closed 6 years ago
Currently, all unicode characters in locale text (e.g. tooltip string) are auto-escaped to HTML entities.
Example)
"button": { "id": "GarroshGroundbreaker", "name": "대지파괴자", "tooltip": { "localeText": { "kokr": "일정 지역 안의 적들에게 <span>{{ formula0 }}</span>의 피해를 줍니다. 외곽의 적들은 <span>{{ formula1 }}</span>초 동안 기절한 후 <span>{{ formula2 }}</span>초 동안 <span>{{ formula3 }}</span> 느려집니다." } //... } //... }
Desired output:
"button": { "id": "GarroshGroundbreaker", "name": "대지파괴자", "tooltip": { "localeText": { "kokr": "일정 지역 안의 적들에게 <span>{{ formula0 }}</span>의 피해를 줍니다. 외곽의 적들은 {{ formula1 }}초 동안 기절한 후 <span>{{ formula2 }}</span>초 동안 <span>{{ formula3 }}</span> 느려집니다." } //... } //... }
I assume this has something to do with Handlebars. Can the auto-escaping behavior be disabled?
This should be fixed in version 1.0.10.
Currently, all unicode characters in locale text (e.g. tooltip string) are auto-escaped to HTML entities.
Example)
Desired output:
I assume this has something to do with Handlebars. Can the auto-escaping behavior be disabled?