9 lines
105 B
Go
9 lines
105 B
Go
package svg
|
|
|
|
import (
|
|
"html"
|
|
)
|
|
|
|
func EscapeText(text string) string {
|
|
return html.EscapeString(text)
|
|
}
|