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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

doesn't process compact (anything)

sfinktah opened this issue · comments

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