Open thispastwinter opened 19 hours ago
I'm currently leveraging the jsonToMarkdown helper in a project where I encountered an issue with incorrectly formatted headers.
jsonToMarkdown
i.e.
Current Implementation:
###Heading###
VS
Propose Implementation:
### Heading
I have accounted for the necessary changes in this MR proposal.
I'm currently leveraging the
jsonToMarkdown
helper in a project where I encountered an issue with incorrectly formatted headers.i.e.
Current Implementation:
###Heading###
Heading### < -- This is not valid markdown
VS
Propose Implementation:
### Heading
Heading < -- This is correctly interpreted via GFM
I have accounted for the necessary changes in this MR proposal.