From 9da9204b4aaf126c1314c6a39ec0434d5196471c Mon Sep 17 00:00:00 2001 From: Andrea Frittoli Date: Thu, 4 Nov 2021 17:37:39 +0000 Subject: [PATCH] Enable emoji for hugo Hugo supports markdown emojis in the :: format by they are disabled by default. Enable them as might be used in Tekton docs. Fixes #268 Signed-off-by: Andrea Frittoli --- config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.toml b/config.toml index 17ef64b..221ea2f 100644 --- a/config.toml +++ b/config.toml @@ -27,6 +27,9 @@ pygmentsUseClassic = false # See https://help.farbox.com/pygments.html pygmentsStyle = "tango" +# Enables emoji +enableEmoji = true + # Configure how URLs look like per section. [permalinks] blog = "/:section/:year/:month/:day/:slug/" -- GitLab