This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-website.git
commit 8cafa694e13b72d3013b7de2b956da73f55ca2b4 Author: Zoran Regvart <[email protected]> AuthorDate: Mon Nov 2 11:24:17 2020 +0100 fix: restore blackfriday renderer Switching to goldmark (default in newer Hugo), would not render the raw HTML markup we have embedded in markdown files -- we would need to either refactor those to partials/layouts or turn off safe rendering. --- config.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config.toml b/config.toml index 58971fd..40e8381 100644 --- a/config.toml +++ b/config.toml @@ -8,9 +8,11 @@ disableKinds = ["taxonomyTerm"] enableRobotsTXT = true timeout = 300000 -[blackfriday] - nofollowLinks = true - noreferrerLinks = true +[markup] +defaultMarkdownHandler = "blackfriday" + [markup.blackfriday] + nofollowLinks = true + noreferrerLinks = true [params] socialProfiles = ["https://twitter.com/ApacheCamel"]
