A Go function that allow you to transform a Markdown text into HTML
Tiny utility that I needed to create myself because I coudn't find another ready to use library.
| Markdown | HTML |
|---|---|
| ** | <strong> |
| __ | <em> |
| * | <b> |
| _ | <i> |
| #... | <h_> |
| [anything](link) | <a href="link">anything<a> |
| [text](link) | <img src="link" alt="text"> |
| --- | <hr> |
<h_> tags are supported from 1 to 7 but you must to go to the next line to close the tag