This parser is a personal project, built out of curiosity and fun. I created it to compile my CV from Markdown to Html (and then to Pdf with some styling).
package main
import (
"fmt"
"github.com/notpaulmartin/mdParser"
)
func main() {
markdown := "# Hello\nWorld"
html := mdParser.MdToHtml(markdown)
fmt.Println(html)
}