mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package bookmarks
|
|
|
|
// Structs and code for the XBEL XML bookmark format.
|
|
// https://github.com/makeworld-the-better-one/amfora/issues/68
|
|
// http://xbel.sourceforge.net/
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
var xbelHeader = []byte(xml.Header + `<!DOCTYPE xbel
|
|
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.1//EN//XML"
|
|
"http://www.python.org/topics/xml/dtds/xbel-1.1.dtd">
|
|
`)
|
|
|
|
const xbelVersion = "1.1"
|
|
|
|
type xbelBookmark struct {
|
|
XMLName xml.Name `xml:"bookmark"`
|
|
URL string `xml:"href,attr"`
|
|
Name string `xml:"title"`
|
|
}
|
|
|
|
// xbelFolder is unused as folders aren't supported by the UI yet.
|
|
// Follow #56 for details.
|
|
// https://github.com/makeworld-the-better-one/amfora/issues/56
|
|
//
|
|
//nolint:unused
|
|
type xbelFolder struct {
|
|
XMLName xml.Name `xml:"folder"`
|
|
Version string `xml:"version,attr"`
|
|
Folded string `xml:"folded,attr"` // Idk if this will be used or not
|
|
Name string `xml:"title"`
|
|
Bookmarks []*xbelBookmark `xml:"bookmark"`
|
|
Folders []*xbelFolder `xml:"folder"`
|
|
}
|
|
|
|
type xbel struct {
|
|
XMLName xml.Name `xml:"xbel"`
|
|
Version string `xml:"version,attr"`
|
|
Bookmarks []*xbelBookmark `xml:"bookmark"`
|
|
// Folders []*xbelFolder // Use later for #56
|
|
}
|
|
|
|
// Instance of xbel - loaded from bookmarks file
|
|
var data xbel
|