Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 833 Bytes

readme.md

File metadata and controls

53 lines (35 loc) · 833 Bytes

Typografer

[App] for typografing html or json and replacing html symbols to utf8.

examples of replacing:

  to \u00a0

— to \u2014

« to \u00AB

» to \u00AA

₽ to \u20BD

[all symbols]

based on [typograf]

JSON mode ignoring

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"
    }
  ]
}