mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-23 04:12:00 +01:00
17 lines
313 B
Go
17 lines
313 B
Go
|
package markdown
|
||
|
|
||
|
import (
|
||
|
"github.com/charmbracelet/glamour"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func normalizeNewlines(s string) string {
|
||
|
s = strings.ReplaceAll(s, "\r\n", "\n")
|
||
|
s = strings.ReplaceAll(s, "\r", "\n")
|
||
|
return s
|
||
|
}
|
||
|
|
||
|
func Render(text string) (string, error) {
|
||
|
return glamour.Render(normalizeNewlines(text), "dark")
|
||
|
}
|