Looking to create a markdown file containing a js
object with commentaries in a separate object for each line.
The desired output should resemble:
{
"a": "test, //commentary1
"b": "test2" //commentary2
}
Initially thought about rewriting the stringify
function, but found it challenging for edge cases. Any suggestions on a more efficient approach?