summaryrefslogtreecommitdiffstats
path: root/helpers/content.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-02-11 16:51:22 +0700
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-02-11 16:51:22 +0700
commit234273a5b571128ccb866c176c38171ffeb3f561 (patch)
tree3e58ecc29bc0fd397f3afb3b52bcd297529e0a16 /helpers/content.go
parent5cc8b58907c63e6cfb668c575b40fbc3636a9655 (diff)
Deprecate sourceRelativeLinks
Fixes #3028 Closes #3026 Closes #2891 Closes #2691
Diffstat (limited to 'helpers/content.go')
-rw-r--r--helpers/content.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/helpers/content.go b/helpers/content.go
index 939be0554..d8130e83f 100644
--- a/helpers/content.go
+++ b/helpers/content.go
@@ -94,6 +94,13 @@ func NewBlackfriday(c ConfigProvider) *Blackfriday {
jww.FATAL.Printf("Failed to get site rendering config\n%s", err.Error())
}
+ if combinedConfig.SourceRelativeLinksEval {
+ // Remove in Hugo 0.21
+ Deprecated("blackfriday", "sourceRelativeLinksEval",
+ `There is no replacement for this feature, as no developer has stepped up to the plate and volunteered to maintain this feature`, false)
+
+ }
+
return combinedConfig
}