Converts ReStructuredText into JSON
Project description
Converts ReStructuredText into JSON.
Usage
Input
Python
------
:age: 22
:typing: dynamic, strong
Java
----
:age: 18
:typing: static, strong
Output
[
{"Python":
{"age": 22, "typing": "dynamic, strong"}
},
{"Java":
{"age": 18, "typing": "static, strong"}
},
]