package asciidocext_config
import "github.com/gohugoio/hugo/markup/asciidocext/asciidocext_config"
Package asciidoc_config holds asciidoc related configuration.
Index ¶
Variables ¶
var ( Default = Config{ Backend: "html5", DocType: "article", Extensions: []string{}, Attributes: map[string]string{}, NoHeaderOrFooter: true, SafeMode: "unsafe", SectionNumbers: false, Verbose: true, Trace: false, FailureLevel: "fatal", WorkingFolderCurrent: false, } AllowedExtensions = map[string]bool{ "asciidoctor-html5s": true, "asciidoctor-bibtex": true, "asciidoctor-diagram": true, "asciidoctor-interdoc-reftext": true, "asciidoctor-katex": true, "asciidoctor-latex": true, "asciidoctor-mathematical": true, "asciidoctor-question": true, "asciidoctor-rouge": true, } AllowedSafeMode = map[string]bool{ "unsafe": true, "safe": true, "server": true, "secure": true, } AllowedFailureLevel = map[string]bool{ "fatal": true, "warn": true, } AllowedBackend = map[string]bool{ "html5": true, "html5s": true, "xhtml5": true, "docbook5": true, "docbook45": true, "manpage": true, } DisallowedAttributes = map[string]bool{ "outdir": true, } )
DefaultConfig holds the default asciidoc configuration. These values are asciidoctor cli defaults (see https://asciidoctor.org/docs/user-manual/)
Types ¶
type Config ¶
type Config struct { Backend string DocType string Extensions []string Attributes map[string]string bool SafeMode string SectionNumbers bool Verbose bool Trace bool FailureLevel string WorkingFolderCurrent bool }
Config configures asciidoc.
Source Files ¶
- Version
- v0.74.2
- Published
- Jul 17, 2020
- Platform
- linux/amd64
- Last checked
- 33 minutes ago –
Tools for package owners.