📄 JSON から TOML

JSON を TOML 形式に変換
入力
出力
使用例:
JSON 例
{
  "title": "JSON Example",
  "owner": {
    "name": "Tom Preston-Werner"
  }
}
TOML 例
title = "JSON Example"
[owner]
name = "Tom Preston-Werner"