2022-12-22 19:06:57 +00:00
|
|
|
package svg
|
|
|
|
|
|
|
|
|
|
import (
|
2023-02-12 20:13:35 +00:00
|
|
|
"bytes"
|
|
|
|
|
"encoding/xml"
|
2022-12-22 19:06:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func EscapeText(text string) string {
|
2023-02-12 20:13:35 +00:00
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
|
_ = xml.EscapeText(buf, []byte(text))
|
|
|
|
|
return buf.String()
|
2022-12-22 19:06:57 +00:00
|
|
|
}
|