package
Version:
v1.4.1
Opens a new window with list of versions in this module.
Published: Apr 21, 2024
License: MIT
Opens a new window with license information.
Imports: 9
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type G struct {
ID string `xml:"id,attr"`
Class string `xml:"class,attr"`
Nodes []Node `xml:"g"`
}
type Node struct {
Title string `xml:"title"`
Text Text `xml:"text"`
}
type SVG struct {
XMLName xml.Name `xml:"svg"`
G G `xml:"g"`
}
type Text struct {
Content string `xml:",chardata"`
X string `xml:"x,attr"`
Y string `xml:"y,attr"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.