Skip to content

Commit

Permalink
Develop (#29)
Browse files Browse the repository at this point in the history
* fix: android character added

* v1.0.1
  • Loading branch information
jhonny-me authored Oct 25, 2021
1 parent a2cdf9a commit 7f521ad
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v1.0.0](https://github.com/jhonny-me/multi-language-mobile/compare/v0.1.0...v1.0.0)
#### [v1.0.1](https://github.com/jhonny-me/multi-language-mobile/compare/v1.0.0...v1.0.1)

- fix: android character added [`#28`](https://github.com/jhonny-me/multi-language-mobile/pull/28)
- Develop [`#27`](https://github.com/jhonny-me/multi-language-mobile/pull/27)

### [v1.0.0](https://github.com/jhonny-me/multi-language-mobile/compare/v0.1.0...v1.0.0)

> 5 September 2021
- chore: bump node dependencies [`#26`](https://github.com/jhonny-me/multi-language-mobile/pull/26)
- build(deps): bump y18n from 4.0.0 to 4.0.1 [`#17`](https://github.com/jhonny-me/multi-language-mobile/pull/17)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multi-language-mobile",
"version": "1.0.0",
"version": "1.0.1",
"description": "Tool for generating localization files for iOS and Android",
"main": "./src/index.js",
"bin": {
Expand Down
2 changes: 2 additions & 0 deletions src/lib/android.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ const formatValue = (input) => {
var input = input.replace(/'/g, '\\\'')
input = input.replace(/&/g, '&')
input = input.replace(/"/g, '\\\"')
input = input.replace(/</g, '&lt;')
input = input.replace(/>/g, '&gt;')
return input
}

Expand Down

0 comments on commit 7f521ad

Please sign in to comment.