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

How to format YAML?

lijialiang opened this issue · comments

e.g.

name: xxx
version: 0.0.1
object:
    a: 1
    b: 2
array: 
    - 1
    - 2

to

name: xxx

version: 0.0.1

object:
    a: 1
    b: 2

array: 
    - 1
    - 2

No plans to add an option to handle this feature, sorry.