- Footnotes separator rather than headline to get around i18n - Warn on footnote redefinition - Do not export footnote definitions at point of definition, only in the footnote section. - Do not automatically exclude Footnotes section to get around possibly hiding other content of such a section - and i18n. The user has the choice of explicitly hiding the section via a :noexport: tag. and some other refactoring
56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
package org
|
|
|
|
import (
|
|
"regexp"
|
|
)
|
|
|
|
type Footnotes struct {
|
|
Title string
|
|
Definitions map[string]*FootnoteDefinition
|
|
addOrder []string
|
|
}
|
|
|
|
type FootnoteDefinition struct {
|
|
Name string
|
|
Children []Node
|
|
Inline bool
|
|
}
|
|
|
|
var footnoteDefinitionRegexp = regexp.MustCompile(`^\[fn:([\w-]+)\](\s+(.+)|\s*$)`)
|
|
|
|
func lexFootnoteDefinition(line string) (token, bool) {
|
|
if m := footnoteDefinitionRegexp.FindStringSubmatch(line); m != nil {
|
|
return token{"footnoteDefinition", 0, m[1], m}, true
|
|
}
|
|
return nilToken, false
|
|
}
|
|
|
|
func (d *Document) parseFootnoteDefinition(i int, parentStop stopFn) (int, Node) {
|
|
start, name := i, d.tokens[i].content
|
|
d.tokens[i] = tokenize(d.tokens[i].matches[2])
|
|
stop := func(d *Document, i int) bool {
|
|
return parentStop(d, i) ||
|
|
(isSecondBlankLine(d, i) && i > start+1) ||
|
|
d.tokens[i].kind == "headline" || d.tokens[i].kind == "footnoteDefinition"
|
|
}
|
|
consumed, nodes := d.parseMany(i, stop)
|
|
definition := FootnoteDefinition{name, nodes, false}
|
|
d.addFootnote(name, &definition)
|
|
return consumed, definition
|
|
}
|
|
|
|
func (fs *Footnotes) Ordered() []FootnoteDefinition {
|
|
m := map[string]bool{}
|
|
definitions, inlineDefinitions := []FootnoteDefinition{}, []FootnoteDefinition{}
|
|
for _, name := range fs.addOrder {
|
|
if isDuplicate := m[name]; !isDuplicate {
|
|
m[name] = true
|
|
if definition := *fs.Definitions[name]; definition.Inline {
|
|
inlineDefinitions = append(inlineDefinitions, definition)
|
|
} else {
|
|
definitions = append(definitions, definition)
|
|
}
|
|
}
|
|
}
|
|
return append(definitions, inlineDefinitions...)
|
|
}
|