summaryrefslogtreecommitdiffstats
path: root/helpers/content.go
diff options
context:
space:
mode:
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
}