# encoding: UTF-8
module Sterile
# @private
class Data
def self.plain_format_rules
[
['“', '"'],
['”', '"'],
['“', '"'],
['”', '"'],
['‘', "'"],
['’', "'"],
['‘', "'"],
['’', "'"],
['—', '--'],
['—', '--'],
['…', '...'],
['…', '...'],
['©', '(c)'],
['©', '(c)'],
['™', '(tm)'],
['™', '(tm)'],
['×', 'x'],
['×', 'x'],
['′', "'"],
['′', "'"],
['″', '"'],
['″', '"'],
['"', '"'],
['­', ''],
['
', ''],
['’', "'"],
['‘', "'"],
['”', '"'],
['“', '"'],
]
end
end
end