Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Attributes ¶
type Attributes struct {
Timestamp string `xml:"timestamp"`
Filename string `xml:"file-name"`
SourceUrl string `xml:"source-url"`
}
Attributes of the resource
type Data ¶
type Data struct {
XMLName xml.Name `xml:"data"`
Encoding string `xml:"encoding,attr"`
Content []byte `xml:",innerxml"`
}
Data object in base64
type Export ¶
type Export struct {
XMLName xml.Name `xml:"en-export"`
Date string `xml:"export-date,attr"`
Notes []Note `xml:"note"`
}
Export represents Evernote enex file structure
type Note ¶
type Note struct {
XMLName xml.Name `xml:"note"`
Title string `xml:"title"`
Content []byte `xml:"content"`
Updated string `xml:"created"`
Created string `xml:"updated"`
Tags []string `xml:"tag"`
Attributes string `xml:"note-attributes"`
Resources []Resource `xml:"resource"`
}
Note is one note in Evernote
Click to show internal directories.
Click to hide internal directories.