Documentation
¶
Overview ¶
Package webdoc generates the Flowbot documentation website from markdown sources.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DocNavPage ¶
type DocNavPage struct {
}
DocNavPage represents a single page in the docs sidebar navigation.
type DocSection ¶
type DocSection struct {
Title string
Pages []DocNavPage
}
DocSection represents a top-level documentation section with its pages.
type FrontMatter ¶
type FrontMatter struct {
Title string `yaml:"title"`
Description string `yaml:"description"`
AccentColor string `yaml:"accent_color"`
Wide bool `yaml:"wide"`
HideSidebar bool `yaml:"hide_sidebar"`
}
FrontMatter holds the parsed YAML front matter from a markdown file. Fields are optional; zero values mean "not set" and will not override defaults.
Click to show internal directories.
Click to hide internal directories.