This API converts markdown to HTML and vice versa.
Converts markdown text to html
Payload:
{
"markdown": "# Markdown text goes here\n It comes back as html"
}Response
200 OK
{
"html": "<h1>Markdown text goes here</h1> <p>It comes back as html</p>"
}Converts html content to markdown
Payload:
{
"html": "<h1>HTML goes here</h1> <p>It comes back as markdown</p>"
}Response
200 OK
{
"markdown": "# HTML goes here\n It comes back as markdown"
}Visit the live application here
https://github.com/ryanmphill/markdown-html-converter-client