diff --git a/content/overview/configuration.md b/content/overview/configuration.md index a07ef5672..c492296fc 100644 --- a/content/overview/configuration.md +++ b/content/overview/configuration.md @@ -71,7 +71,7 @@ Here is a yaml configuration file which sets a few more options [Blackfriday](https://github.com/russross/blackfriday) is the [Markdown](http://daringfireball.net/projects/markdown/) rendering engine used in Hugo. The Blackfriday configuration in Hugo is mostly a set of sane defaults that should fit most use cases. -But Hugo does expose some options---as listed in the table below, matched with the corresponding flag in the [Blackfriday source](https://github.com/russross/blackfriday/blob/master/html.go): +But Hugo does expose some options---as listed in the table below, matched with the corresponding flag in the Blackfriday source ([html.go](https://github.com/russross/blackfriday/blob/master/html.go) and [markdown.go](https://github.com/russross/blackfriday/blob/master/markdown.go)):
Purpose: | If true , then header and footnote IDs are generated without the document ID (e.g. #my-header instead of #my-header:bec3ed8ba720b9073ab75abcf3ba5d97 ) |
+
+|
extensions |
+[] |
+EXTENSION_* |
+
Purpose: | +Use non-default additional extensions (e.g. Add "hardLineBreak" to use EXTENSION_HARD_LINE_BREAK ) |
+
blackfriday:
angledQuotes: true
fractions: false
plainIdAnchors: true
+ extensions:
+ - hardLineBreak