MiniDocs/src/yamlToJson.nim
2022-10-16 18:29:19 -05:00

19 lines
402 B
Nim

import yaml
import json
import commandeer
commandline:
argument yamlString, string
# option testing, bool, "testing", "t"
exitoption "help", "h",
"Usage: yamlImporter [--testing|--int=<int>|--help] " &
"<yamlString>..."
errormsg "You made a mistake!"
# import values
#if testing:
# echo("Testing enabled")
let metadata = $yaml.loadToJson(yamlString)
echo metadata