mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-23 04:12:00 +01:00
448e12ce38
Ran imp Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: jolheiser <john.olheiser@gmail.com> Reviewed-on: https://gitea.com/jolheiser/sip/pulls/17
19 lines
356 B
Go
19 lines
356 B
Go
package markdown
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/charmbracelet/glamour"
|
|
"github.com/kyokomi/emoji"
|
|
)
|
|
|
|
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(emoji.Sprint(normalizeNewlines(text)), "dark")
|
|
}
|