Documentation
¶
Index ¶
- Constants
- type Blankline
- type Block
- type BlockResult
- type DescriptiveItem
- type Document
- type Drawer
- type Footnote
- type Heading
- type Hr
- type InlineBackSlash
- type InlineEmphasis
- type InlineLineBreak
- type InlineLink
- type InlinePercent
- type InlineText
- type InlineTimestamp
- type Keyword
- type KeywordAttr
- type LinkType
- type List
- type ListItem
- type Node
- type Paragragh
- type Parser
- type Section
- type Table
- type TableColumn
- type TableRow
- type WithKeyword
Constants ¶
View Source
const ( BlockName = "Block" BlockResultName = "BlockResult" )
View Source
const ( InlineTextName = "InlineText" InlineLinkName = "Link" InlinePercentName = "Percent" InlineEmphasisName = "Emphasis" InlineLineBreakName = "LineBreak" InlineBackSlashName = "BackSlash" InlineTimestampName = "Timestamp" )
View Source
const ( ListName = "List" ListItemName = "ListItem" OrderlistName = "OrderList" UnorderlistName = "UnorderList" DescriptiveName = "Descriptive" DescriptiveItemName = "DescriptiveItem" )
View Source
const ( HrName = "Hr" FootnoteName = "Footnote" BlanklineName = "Blankline" ParagraghName = "Paragragh" )
View Source
const ( TableName = "Table" TableRowName = "TableRow" TableColumnName = "TableColumn" )
View Source
const (
DrawerName = "Drawer"
)
View Source
const HeadingName = "Heading"
View Source
const (
KeywordName = "Keyword"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Block ¶
type Block struct { Type string Parameters []string Result *BlockResult Children []Node }
type BlockResult ¶
type BlockResult struct {
Children []Node
}
func (BlockResult) Name ¶
func (BlockResult) Name() string
type DescriptiveItem ¶
type DescriptiveItem struct { Level int Bullet string Status string Title string Descs []Node Children []Node }
func (DescriptiveItem) Name ¶
func (DescriptiveItem) Name() string
type Document ¶
type Heading ¶
type Heading struct { Index string Stars int Keyword string Priority string Title []Node Tags []string Properties *Drawer Children []Node }
STARS KEYWORD PRIORITY TITLE TAGS
type InlineBackSlash ¶
func (InlineBackSlash) Name ¶
func (InlineBackSlash) Name() string
type InlineEmphasis ¶
func (InlineEmphasis) Name ¶
func (InlineEmphasis) Name() string
type InlineLineBreak ¶
type InlineLineBreak struct {
Count int
}
func (InlineLineBreak) Name ¶
func (InlineLineBreak) Name() string
type InlineLink ¶
func (InlineLink) Name ¶
func (InlineLink) Name() string
func (*InlineLink) Type ¶
func (s *InlineLink) Type() LinkType
type InlinePercent ¶
type InlinePercent struct {
Num string
}
func (InlinePercent) Name ¶
func (InlinePercent) Name() string
type InlineText ¶
func (InlineText) Name ¶
func (InlineText) Name() string
type InlineTimestamp ¶
func (InlineTimestamp) Name ¶
func (InlineTimestamp) Name() string
type KeywordAttr ¶
type TableColumn ¶
func (TableColumn) Name ¶
func (TableColumn) Name() string
Click to show internal directories.
Click to hide internal directories.