prototyped svg reports
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user