cb18a5183 Fix broken link 07a0198bf Config: Place Google Analytics tag ID under the services key 4bf0c719f Fix typo 50d8ad1af Fix muiltilingual menu definition instructions 1a32519a9 Fix typos 6f34ca8e0 Explain usage of front matter to target a template 5bd977257 Improve goldmark config docs 447632938 Remove Docker notes from installation instructions 84741d173 Update reference to hugo.work 0338d7c71 Fix menu template f5d2f5ed4 Fix typos in content/en/functions/fmt a3a40ff99 Add return type to functions 85ac3e779 Remove outdated feature image d47d889e4 Fix signatures 7551ba28f Document safe.JSStr function e77993be0 Document keyVals function 4dba20db3 Update theme babf91544 Update echoparam 8c8203efa Adjust related functions 4cb1b30fc Fix example ba95eca64 Improve showcase prose 5d3dcf366 Add Overmind Studios showcase 8d634ac70 Change code blocks from indented to fenced cfab978e6 Add missing code fences 407dd5c47 Limit related pages for functions to other functions 9fa67d981 Fix .Site.LastChange doc 393aa16d0 netlify: Hugo 0.119.0 f864af97a docs: Even more about images.Process 9d772d5f0 docs: More about images.Process bc655f869 docs: Regen docshelper 41c3536d1 Merge commit '9aec42c5452b3eb224888c50ba1c3f3b68a447e9' 918ed53f4 Add images.Process filter 573645883 Add $image.Process a1151b0fd Add images.Opacity filter git-subtree-dir: docs git-subtree-split: cb18a5183fc62f301ffde50b8c39f03e4b897aec
8.6 KiB
title | description | categories | keywords | menu | weight | slug | toc | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Configure markup | Configure rendering of markup to HTML. |
|
|
|
50 | configuration-markup | true |
Default handler
By default, Hugo uses Goldmark to render markdown to HTML.
{{< code-toggle file=hugo copy=false >}} [markup] defaultMarkdownHandler = 'goldmark' {{< /code-toggle >}}
Files with the .md
or .markdown
extension are processed as markdown, provided that you have not specified a different content format using the markup
field in front matter.
To use a different renderer for markdown files, specify one of asciidocext
, org
, pandoc
, or rst
in your site configuration.
defaultMarkdownHandler | Description |
---|---|
asciidocext |
AsciiDoc |
goldmark |
Goldmark |
org |
Emacs Org Mode |
pandoc |
Pandoc |
rst |
reStructuredText |
To use Asciidoc, Pandoc, or reStructuredText you must install the relevant renderer and update your security policy.
{{% note %}} Unless you need a unique capability provided by one of the alternate markdown handlers, we strongly recommend that you use the default setting. Goldmark is fast, well maintained, conforms to the CommonMark specification, and is compatible with GitHub Flavored Markdown (GFM).
{{% /note %}}
Goldmark
This is the default configuration for the Goldmark markdown renderer:
{{< code-toggle config="markup.goldmark" />}}
For details on the extensions, refer to this section of the Goldmark documentation
Some settings explained:
- hardWraps
- By default, Goldmark ignores newlines within a paragraph. Set to
true
to render newlines as<br>
elements. - unsafe
- By default, Goldmark does not render raw HTML and potentially dangerous links. If you have lots of inline HTML and/or JavaScript, you may need to turn this on.
- typographer
- The typographer extension replaces certain character combinations with HTML entities as specified below:
Markdown | Replaced by | Description |
---|---|---|
... |
… |
horizontal ellipsis |
' |
’ |
apostrophe |
-- |
– |
en dash |
--- |
— |
em dash |
« |
« |
left angle quote |
“ |
“ |
left double quote |
‘ |
‘ |
left single quote |
» |
» |
right angle quote |
” |
” |
right double quote |
’ |
’ |
right single quote |
- attribute
- Enable custom attribute support for titles and blocks by adding attribute lists inside single curly brackets (
{.myclass class="class1 class2" }
) and placing it after the Markdown element it decorates, on the same line for titles and on a new line directly below for blocks.
Hugo supports adding attributes (e.g. CSS classes) to Markdown blocks, e.g. tables, lists, paragraphs etc.
A blockquote with a CSS class:
> foo
> bar
{.myclass}
There are some current limitations: For tables you can currently only apply it to the full table, and for lists the ul
/ol
-nodes only, e.g.:
* Fruit
* Apple
* Orange
* Banana
{.fruits}
* Dairy
* Milk
* Cheese
{.dairies}
{.list}
Note that attributes in code fences must come after the opening tag, with any other highlighting processing instruction, e.g.:
```go {.myclass linenos=table,hl_lines=[8,"15-17"],linenostart=199}
// ... code
```
- autoHeadingIDType ("github")
- The strategy used for creating auto IDs (anchor names). Available types are
github
,github-ascii
andblackfriday
.github
produces GitHub-compatible IDs,github-ascii
will drop any non-Ascii characters after accent normalization, andblackfriday
will make the IDs compatible with Blackfriday, the default Markdown engine before Hugo 0.60. Note that if Goldmark is your default Markdown engine, this is also the strategy used in the anchorize template func.
Asciidoc
This is the default configuration for the AsciiDoc markdown renderer:
{{< code-toggle config="markup.asciidocExt" />}}
- attributes
- (
map
) Variables to be referenced in your AsciiDoc file. This is a list of variable name/value maps. See Asciidoctor’s attributes.
- backend:
- (
string
) Don’t change this unless you know what you are doing. - extensions
- (
[]string
) Possible extensions areasciidoctor-html5s
,asciidoctor-bibtex
,asciidoctor-diagram
,asciidoctor-interdoc-reftext
,asciidoctor-katex
,asciidoctor-latex
,asciidoctor-mathematical
, andasciidoctor-question
. - failureLevel
- (
string
) The minimum logging level that triggers a non-zero exit code (failure). - noHeaderOrFooter
- (
bool
) Output an embeddable document, which excludes the header, the footer, and everything outside the body of the document. Don’t change this unless you know what you are doing. - preserveTOC
- (
bool
) By default, Hugo removes the table of contents generated by Asciidoctor and provides it through the built-in variable.TableOfContents
to enable further customization and better integration with the various Hugo themes. This option can be set to true to preserve Asciidoctor’s TOC in the generated page. - safeMode
- (
string
) Safe mode levelunsafe
,safe
,server
, orsecure
. Don’t change this unless you know what you are doing. - sectionNumbers
- (
bool
) Auto-number section titles. - trace
- (
bool
) Include backtrace information on errors. - verbose
- (
bool
) Verbosely print processing information and configuration file checks to stderr. - workingFolderCurrent
- (
bool
) Sets the working directory to be the same as that of the AsciiDoc file being processed, so that include will work with relative paths. This setting uses the asciidoctor cli parameter --base-dir and attribute outdir=. For rendering diagrams with asciidoctor-diagram,workingFolderCurrent
must be set totrue
.
Notice that for security concerns only extensions that do not have path separators (either \
, /
or .
) are allowed. That means that extensions can only be invoked if they are in the Ruby's $LOAD_PATH
(ie. most likely, the extension has been installed by the user). Any extension declared relative to the website's path will not be accepted.
Example of how to set extensions and attributes:
[markup.asciidocExt]
extensions = ["asciidoctor-html5s", "asciidoctor-diagram"]
workingFolderCurrent = true
[markup.asciidocExt.attributes]
my-base-url = "https://example.com/"
my-attribute-name = "my value"
In a complex Asciidoctor environment it is sometimes helpful to debug the exact call to your external helper with all
parameters. Run Hugo with -v
. You will get an output like
INFO 2019/12/22 09:08:48 Rendering book-as-pdf.adoc with C:\Ruby26-x64\bin\asciidoctor.bat using asciidoc args [--no-header-footer -r asciidoctor-html5s -b html5s -r asciidoctor-diagram --base-dir D:\prototypes\hugo_asciidoc_ddd\docs -a outdir=D:\prototypes\hugo_asciidoc_ddd\build -] ...
Highlight
This is the default highlight
configuration. Note that some of these settings can be set per code block, see Syntax Highlighting.
{{< code-toggle config="markup.highlight" />}}
For style
, see these galleries:
For CSS, see Generate Syntax Highlighter CSS.
Table of contents
{{< code-toggle config="markup.tableOfContents" />}}
These settings only works for the Goldmark renderer:
- startLevel
- The heading level, values starting at 1 (
h1
), to start render the table of contents. - endLevel
- The heading level, inclusive, to stop render the table of contents.
- ordered
- If
true
, generates an ordered list instead of an unordered list.