jeremyfa / yaml.js

Standalone JavaScript YAML 1.2 Parser & Encoder. Works under node.js and all major browsers. Also brings command line YAML/JSON conversion tools.
MIT License
888 stars 145 forks source link

doesn't process compact (anything) #137

Open sfinktah opened 3 years ago

sfinktah commented 3 years ago

This is valid YAML

- just: write some
- yaml: 
  - [here, and]
  - {it: updates, in: real-time}
- - This is a sequence
  - inside another sequence

Your code renders it as

[{"just":"write some"},{"yaml":[["here","and"],{"it":"updates","in":"real-time"}]},"- This is a sequence\n- inside another sequence"]