avakar / pycson

A Coffescript Object Notation (CSON) parser for Python 2 and Python 3.
Other
55 stars 7 forks source link

FR: add support for continued strings #16

Open fiee opened 3 years ago

fiee commented 3 years ago

I got a cson file from an Atom package that contains many entries like

    body: '\\about' +
      '{${1:text}}' +
      '[${2:reference}]' +
      '$3'

Your parser can’t handle these multipart/continued strings, while Atom apparently understands them. Could you add that?