Documentation ¶
Overview ¶
Package goldmark_config holds Goldmark related configuration.
Index ¶
Constants ¶
View Source
const ( AutoHeadingIDTypeGitHub = "github" AutoHeadingIDTypeGitHubAscii = "github-ascii" AutoHeadingIDTypeBlackfriday = "blackfriday" )
Variables ¶
View Source
var Default = Config{ Extensions: Extensions{ Typographer: true, Footnote: true, DefinitionList: true, Table: true, Strikethrough: true, Linkify: true, TaskList: true, }, Renderer: Renderer{ Unsafe: false, }, Parser: Parser{ AutoHeadingID: true, AutoHeadingIDType: AutoHeadingIDTypeGitHub, Attribute: ParserAttribute{ Title: true, Block: false, }, }, }
DefaultConfig holds the default Goldmark configuration.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Renderer Renderer Parser Parser Extensions Extensions }
Config configures Goldmark.
type Extensions ¶
type Parser ¶
type Parser struct { // Enables custom heading ids and // auto generated heading ids. AutoHeadingID bool // The strategy to use when generating heading IDs. // Available options are "github", "github-ascii". // Default is "github", which will create GitHub-compatible anchor names. AutoHeadingIDType string // Enables custom attributes. Attribute ParserAttribute }
type ParserAttribute ¶ added in v0.81.0
Click to show internal directories.
Click to hide internal directories.