Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Gillespie <jacobwgillespie@gmail.com>2015-01-05 22:00:56 +0300
committerbep <bjorn.erik.pedersen@gmail.com>2015-01-05 23:00:22 +0300
commitc0f54aefe38bc16406a187b3d20b6ffddc70eb04 (patch)
treed7da502b8ab801574973448d0a32791761d88294 /docs
parenta0e44bb71ddb49816511a40fc97ed66aa021d450 (diff)
Rename to plainIdAnchors
Diffstat (limited to 'docs')
-rw-r--r--docs/content/overview/configuration.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/overview/configuration.md b/docs/content/overview/configuration.md
index 1c9e2c969..1f91ea3ed 100644
--- a/docs/content/overview/configuration.md
+++ b/docs/content/overview/configuration.md
@@ -77,14 +77,14 @@ But Hugo does expose some options -- in the table below matched with the corresp
Flag | Default | Blackfriday flag | Purpose
--- | --- | --- | ---
angledQuotes | false | HTML_SMARTYPANTS_ANGLED_QUOTES | Enable angled double quotes (`« »`)
-documentIDAnchor | true | FootnoteAnchorPrefix and HeaderIDSuffix | Enable the prepending / appending of the unique document ID to the footnote and header anchor IDs
+plainIdAnchors | false | FootnoteAnchorPrefix and HeaderIDSuffix | If true, then header and footnote IDs are generated without the document ID (so, `#my-header` instead of `#my-header:bec3ed8ba720b9073ab75abcf3ba5d97`)
**Note** that these flags must be grouped under the `blackfriday` key and can be set on **both site and page level**. If set on page, it will override the site setting.
```
blackfriday:
angledQuotes = true
- documentIDAnchor = false
+ plainIdAnchors = true
```
## Notes