1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-02-07 22:50:11 +00:00

12 lines
212 B
Go
Raw Normal View History

package parser
import (
"github.com/bouncepaw/mycorrhiza/util"
"github.com/m4tty/cajun"
)
func CreoleToHtml(creole []byte) string {
out, _ := cajun.Transform(string(util.NormalizeEOL(creole)))
return out
}