]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Use `{=` and `=}` for variables in Jinja templates
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 29 Mar 2019 14:16:24 +0000 (14:16 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 29 Mar 2019 14:16:24 +0000 (14:16 +0000)
lualib/lua_util.lua

index 7e0d7d878d767d6db8d65e461becca368eb68efc..a6a99f2b64d81c6c8fbb21882f25f7e7643d927c 100644 (file)
@@ -32,10 +32,10 @@ local nospace = 1 - space
 local ptrim = space^0 * lpeg.C((space^0 * nospace^1)^0)
 local match = lpeg.match
 
-lupa.configure{
+lupa.configure('{%', '%}', '{=', '=}', '{#', '#}', {
   keep_trailing_newline = true,
   autoescape = false,
-}
+})
 
 lupa.filters.pbkdf = function(s)
   local cr = require "rspamd_cryptobox"