Skip to content

ryanmphill/markdown-html-converter

Repository files navigation

Markdown HTML Converter API

This API converts markdown to HTML and vice versa.

Endpoints:

/markdown-to-html POST:

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>"
}

/html-to-markdown POST:

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"
}

Links

Site

Visit the live application here

Client Side Repository

https://github.com/ryanmphill/markdown-html-converter-client

About

Backend Django REST API portion of project for practicing deploying a full stack application to AWS. Converts Markdown to HTML and vice versa. Features Github action and deploy script to automatically integrate changes to main branch on production EC2 instance.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors