mirror of
https://gitee.com/johng/gf
synced 2026-06-26 17:35:40 +08:00
26 lines
536 B
Go
26 lines
536 B
Go
package ghtml
|
|
|
|
import "strings"
|
|
|
|
// 将html中的特殊标签转换为html转义标签
|
|
func SpecialChars(s string) string {
|
|
return strings.NewReplacer(
|
|
"&", "&",
|
|
"<", "<",
|
|
">", ">",
|
|
`"`, """,
|
|
"'", "'",
|
|
).Replace(s)
|
|
}
|
|
|
|
// 将html转义标签还原为html特殊标签
|
|
func SpecialCharsDecode(s string) string {
|
|
return strings.NewReplacer(
|
|
"&", "&",
|
|
"<", "<",
|
|
">", ">",
|
|
""", `"`,
|
|
"'", "'",
|
|
).Replace(s)
|
|
}
|