Rename to plainIdAnchors
authorJacob Gillespie <jacobwgillespie@gmail.com>
Mon, 5 Jan 2015 19:00:56 +0000 (13:00 -0600)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 5 Jan 2015 20:00:22 +0000 (21:00 +0100)
commands/hugo.go
docs/content/overview/configuration.md
helpers/content.go

index e04a8a0d152d35d061bee7301d9bfab5fae3a685..982c23eb52aa618dff009d6f32e284983cc3a118 100644 (file)
@@ -136,7 +136,7 @@ func InitializeConfig() {
        viper.SetDefault("FootnoteAnchorPrefix", "")
        viper.SetDefault("FootnoteReturnLinkContents", "")
        viper.SetDefault("NewContentEditor", "")
-       viper.SetDefault("Blackfriday", map[string]bool{"angledQuotes": false, "documentIDAnchor": true})
+       viper.SetDefault("Blackfriday", map[string]bool{"angledQuotes": false, "plainIdAnchors": false})
 
        if hugoCmdV.PersistentFlags().Lookup("buildDrafts").Changed {
                viper.Set("BuildDrafts", Draft)
index 1c9e2c969c503b2b8103c77b03135f4bdc34f213..1f91ea3ed153e210f111324cdcbfa0b0d5bc5013 100644 (file)
@@ -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
index 8770c88e7b6ec4259a345c0594372975f2b65058..e8c086a333caea0f56f9966855022e73806b2ad3 100644 (file)
@@ -85,7 +85,9 @@ func GetHtmlRenderer(defaultFlags int, ctx RenderingContext) blackfriday.Rendere
                FootnoteReturnLinkContents: viper.GetString("FootnoteReturnLinkContents"),
        }
 
-       if m, ok := ctx.ConfigFlags["documentIDAnchor"]; ok && m && len(ctx.DocumentId) != 0 {
+       b := len(ctx.DocumentId) != 0
+
+       if m, ok := ctx.ConfigFlags["plainIdAnchors"]; b && ((ok && !m) || !ok) {
                renderParameters.FootnoteAnchorPrefix = ctx.DocumentId + ":" + renderParameters.FootnoteAnchorPrefix
                renderParameters.HeaderIDSuffix = ":" + ctx.DocumentId
        }