7 lines
125 B
Go
7 lines
125 B
Go
package markdown
|
|
|
|
// Render creates HTML from the supplied markdown text.
|
|
func Render(markdown string) string {
|
|
return ""
|
|
}
|