Files
2026-08-28 17:59:35 +02:00

16 lines
237 B
Go

package models
import (
"encoding/xml"
)
const (
XMLNS = "http://www.w3.org/1999/xhtml"
)
type Xhtml struct {
XMLName xml.Name `xml:"xhtml"`
Xmlns string `xml:"xmlns,attr"`
Text string `xml:",chardata"`
}