d2/lib/svg/text.go

10 lines
105 B
Go
Raw Normal View History

2022-12-22 19:06:57 +00:00
package svg
import (
2023-02-12 20:01:33 +00:00
"html"
2022-12-22 19:06:57 +00:00
)
func EscapeText(text string) string {
2023-02-12 20:01:33 +00:00
return html.EscapeString(text)
2022-12-22 19:06:57 +00:00
}