diff --git a/CHANGELOG.md b/CHANGELOG.md
index c50edc7..92f5335 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+# Unreleased
+- Feature: Add --escape-all-tags option to force escaping of Android styling tags (#281)
+
# 1.0.6 (2019-05-28)
- Improvement: Support more Android styling tags (#278)
diff --git a/lib/twine/cli.rb b/lib/twine/cli.rb
index 89ac3ed..50013e0 100644
--- a/lib/twine/cli.rb
+++ b/lib/twine/cli.rb
@@ -45,6 +45,14 @@ module Twine
files are UTF-16 without BOM, you need to specify if it's UTF-16LE or UTF16-BE.
DESC
},
+ escape_all_tags: {
+ switch: ['--[no-]escape-all-tags'],
+ description: <<-DESC,
+ Always escape all HTML tags. By default the Android formatter will ONLY escape styling tags, if a
+ string also contains placeholders. This flag enforces that styling tags are escaped regardless of
+ placeholders.
+ DESC
+ },
file_name: {
switch: ['-n', '--file-name FILE_NAME'],
description: 'This flag may be used to overwrite the default file name of the format.'
@@ -111,6 +119,7 @@ module Twine
optional_options: [
:developer_language,
:encoding,
+ :escape_all_tags,
:format,
:include,
:languages,
@@ -133,6 +142,7 @@ module Twine
:create_folders,
:developer_language,
:encoding,
+ :escape_all_tags,
:file_name,
:format,
:include,
@@ -152,6 +162,7 @@ module Twine
optional_options: [
:developer_language,
:encoding,
+ :escape_all_tags,
:include,
:quiet,
:tags,
diff --git a/lib/twine/formatters/android.rb b/lib/twine/formatters/android.rb
index 1e394e3..d86797c 100644
--- a/lib/twine/formatters/android.rb
+++ b/lib/twine/formatters/android.rb
@@ -125,7 +125,7 @@ module Twine
# if not, escape opening angle brackes unless it's a supported styling tag
# https://github.com/scelis/twine/issues/212
# https://stackoverflow.com/questions/3235131/#18199543
- if number_of_twine_placeholders(value) > 0
+ if number_of_twine_placeholders(value) > 0 or @options[:escape_all_tags]
# matches all `<` but untouched' => 'untouched',
'first inbetween second' => 'first inbetween second'
}
+ @escape_all_test_values = {
+ 'bold' => '<b>bold</b>',
+ 'italic' => '<i>italic</i>',
+ 'underline' => '<u>underline</u>'
+ }
end
def test_read_format
@@ -217,6 +222,11 @@ class TestAndroidFormatter < FormatterTest
@formatter.set_translation_for_key 'key1', 'en', input
assert_equal expected, @empty_twine_file.definitions_by_key['key1'].translations['en']
end
+
+ @escape_all_test_values.each do |expected, input|
+ @formatter.set_translation_for_key 'key1', 'en', input
+ assert_equal expected, @empty_twine_file.definitions_by_key['key1'].translations['en']
+ end
end
def test_format_file
@@ -245,6 +255,11 @@ class TestAndroidFormatter < FormatterTest
@escape_test_values.each do |input, expected|
assert_equal expected, @formatter.format_value(input)
end
+
+ @formatter.options.merge!({ escape_all_tags: true })
+ @escape_all_test_values.each do |input, expected|
+ assert_equal expected, @formatter.format_value(input)
+ end
end
def test_format_value_escapes_non_resource_identifier_at_signs