Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HeadingContext ¶
type HeadingContext interface { // Page is the page containing the heading. Page() interface{} // Level is the level of the header (i.e. 1 for top-level, 2 for sub-level, etc.). Level() int // Anchor is the HTML id assigned to the heading. Anchor() string // Text is the rendered (HTML) heading text, excluding the heading marker. Text() string // PlainText is the unrendered version of Text. PlainText() string }
HeadingContext contains accessors to all attributes that a HeadingRenderer can use to render a heading.
type HeadingRenderer ¶
type HeadingRenderer interface { // Render writes the rendered content to w using the data in w. RenderHeading(w io.Writer, ctx HeadingContext) error identity.Provider }
HeadingRenderer describes a uniquely identifiable rendering hook.
type LinkContext ¶
type LinkRenderer ¶
type Renderers ¶
type Renderers struct { LinkRenderer LinkRenderer ImageRenderer LinkRenderer HeadingRenderer HeadingRenderer }
Click to show internal directories.
Click to hide internal directories.