Skip to content

baomastr/typograf-unicode-replacer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

json typograf / html typograf / string replacer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published