Ever want to turn json into markdown? I wanted to and couldn't. So I made a...
Ever want to turn json into markdown? I wanted to and couldn't. So I made a python-to-markdown serialization library. Handles some but not all types.
```
>>> loads("- a\\n- b\\n - c\\n")
['a', 'b', 'c']
```
and
```
>>> dumps([1,2])
'- 1\\n- 2\\n'
```
https://pypi.org/project/markpickle/0.2.0/
Self-replies
And by couldn't I mean, I couldn't without like, importing the json to python, walking the graph of the dict and deciding how to turn each key and value into markdown.