diff options
Diffstat (limited to 'web/blog/default.nix')
-rw-r--r-- | web/blog/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
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; |