When the markdown file is transformed to JSON:
const obj = md2json.parse(str);
there is an issue with bulleted lists.
I have multiple lists like the following in my file:
components:
- config
- backend
state: unstable
After conversion to JSON, a dash is added to any line in the block after the first dash:
"heading ...": {
"raw": "components:\n- config\n- backend\n- state: unstable\n"
}