Markdown takes a string or []byte and renders to HTML in Markdown syntax with special links.
(input any, urlPrefix string, metas map[string]string)
| 158 | |
| 159 | // Markdown takes a string or []byte and renders to HTML in Markdown syntax with special links. |
| 160 | func Markdown(input any, urlPrefix string, metas map[string]string) []byte { |
| 161 | return Render(TypeMarkdown, input, urlPrefix, metas) |
| 162 | } |
no test coverage detected