Files
inventory-plus-plus/server/ui/svg/xmlns.go
T
angel 82efe19ae0
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
prototyped svg reports
2026-08-19 23:19:41 -06:00

20 lines
259 B
Go

package svg
import "fmt"
const (
XMLNSW32000SVG XMLNS = "http://www.w3.org/2000/svg"
)
type (
XMLNS string
)
func (v XMLNS) PrintKey() string {
return "xmlns"
}
func (v XMLNS) PrintValue() (string, bool) {
return fmt.Sprintf("%q", string(v)), true
}