[App] for typografing html or json and replacing html symbols to utf8.
to \u00a0
— to \u2014
« to \u00AB
» to \u00AA
₽ to \u20BD
based on [typograf]
ignoring works recursively for keys starting with underScore.
{"test": [{"test": "test to test"}]}
// will get
{
"test": [
{
"test": "test to\u00a0test"
}
]
}but
{"_test": [{"test": "test to test"}]}
// will get
{
"_test": [
{
"test": "test to test"
}
]
}