mirror of
https://github.com/mudler/LocalAGI.git
synced 2026-07-23 10:45:41 -04:00
10 lines
144 B
Go
10 lines
144 B
Go
package utils
|
|
|
|
import "strings"
|
|
|
|
func HTMLify(s string) string {
|
|
s = strings.TrimSpace(s)
|
|
s = strings.ReplaceAll(s, "\n", "<br>")
|
|
return s
|
|
}
|