1. **Add elements to page**
Add `md-to-html` to the page.
It might be a good idea to add them to a floating group so they don't occupy any space in the page.
2. **Feed it markdown**
Set the source of the `md-to-html` to a body of markdown. The plugin will instantly convert that to clean HTML.
3. **Pour the output into an HTML element.**
Add an HTML content to the page and inside add the output wrapped in something with the class prose.
```
<div id="my-md-element">
... output of md-to-html ...
</div>
<style>
.my-md-element {
h1 {
background-color: gray;
}
...
}
</style>
```
# HTML to Markdown converter
1. get an API key on
https://html-to-markdown.com/api (you will need a GitHub account).
2. add it to the app
3. give any HTML to it and it will return markdown.