d2/lib/svg/text.go
Alexander Wang 2f545e3f61
tables
2022-12-22 11:06:57 -08:00

12 lines
176 B
Go

package svg
import (
"bytes"
"encoding/xml"
)
func EscapeText(text string) string {
buf := new(bytes.Buffer)
_ = xml.EscapeText(buf, []byte(text))
return buf.String()
}