14 lines
301 B
Go
14 lines
301 B
Go
package xml
|
|
|
|
// EntitiesMap are all named character entities.
|
|
var EntitiesMap = map[string][]byte{
|
|
"apos": []byte("'"),
|
|
"gt": []byte(">"),
|
|
"quot": []byte("\""),
|
|
}
|
|
|
|
// TextRevEntitiesMap is a map of escapes.
|
|
var TextRevEntitiesMap = map[byte][]byte{
|
|
'<': []byte("<"),
|
|
'&': []byte("&"),
|
|
}
|