hjson / hjson-rust

Hjson for Rust
https://hjson.github.io/
MIT License
97 stars 31 forks source link

Strips leading slashes from key names and string fields #12

Open CameronNemo opened 4 years ago

CameronNemo commented 4 years ago

Example:

{
    foo: {
        /bar/: /baz/bak
        foo: /fnord
    }
}

becomes:

{
  "foo": {
    "bar/": "baz/bak",
    "foo": "fnord"
  }
}

:/