edn-format / edn

Extensible Data Notation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Escaping of quotes and backslashes in strings

igorw opened this issue · comments

commented

Escaping of double quotes and backslashes in strings is not specified at all.

I would assume that:

  • "foo\\bar" => foo\bar
  • "foo\"bar" => foo"bar

And the clojure implementation confirms this. It should be specified in edn though.

Dupe of #49