Skip to content
/ 2json Public

Simple tools to convert YAML and TOML files to JSON

License

Notifications You must be signed in to change notification settings

lkiesow/2json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

YAML/TOML to JSON Converter

Simple tools to convert YAML and TOML files to JSON.

Example: test.yaml

some-key:
  a: 1
  b: 2
 yaml2json test.yaml
{
  "some-key": {
    "a": 1,
    "b": 2
  }
}

Example: test.toml

[some-key]
a = 1
b = 2
 toml2json test.toml
{
  "some-key": {
    "a": 1,
    "b": 2
  }
}

About

Simple tools to convert YAML and TOML files to JSON

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages