// renderMarkdown converts a limited and opinionated flavor of Markdown (compliant with // CommonMark 0.29) to HTML for the purposes of Go websites. // // The Markdown source may contain raw HTML, // but Go templates have already been processed. func renderMarkdown(src []byte) ([]byte, error) { … }