From a32730ab45a9acb8871e3a9a5a68098047f4a145 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 8 Sep 2023 15:50:05 +0300 Subject: feat(web/blog): add option to disable tagfilter per-post Posts can now specify (optionally) tagfilter=true/false to toggle escaping of HTML tags. Change-Id: Ie4a1a45028570fc166fdffba708bf9d0e0c6ae81 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9277 Tested-by: BuildkiteCI Reviewed-by: Mark Shevchenko --- web/blog/default.nix | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'web/blog/default.nix') diff --git a/web/blog/default.nix b/web/blog/default.nix index 66d7759deb7b..696a9529c3b4 100644 --- a/web/blog/default.nix +++ b/web/blog/default.nix @@ -24,6 +24,10 @@ let # Path to the Markdown file containing the post content. content = path; + # Whether dangerous HTML tags should be filtered in this post. Can + # be disabled to, for example, embed videos in a post. + tagfilter = option bool; + # Optional name of the author to display. author = option string; -- cgit 1.4.1