diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-02-21 11:24:19 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-02-21 11:24:19 +0000 |
commit | 50e9652789628026d15e08c3e891e50364375fc6 (patch) | |
tree | 3e0da4a8b91a2281c87b178adef97b1ef8a2f92d /lualib | |
parent | 8c8f53d783edb077d067a26c122fc5f42acbb954 (diff) | |
download | rspamd-50e9652789628026d15e08c3e891e50364375fc6.tar.gz rspamd-50e9652789628026d15e08c3e891e50364375fc6.zip |
[Fix] Fix history key, as we use `{=` and not `{{` in templates
Diffstat (limited to 'lualib')
-rw-r--r-- | lualib/lua_util.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lualib/lua_util.lua b/lualib/lua_util.lua index 6964b0f00..07ab13c9c 100644 --- a/lualib/lua_util.lua +++ b/lualib/lua_util.lua @@ -171,7 +171,7 @@ end -- @param {boolean} skip_global_env don't export Rspamd superglobals -- @return {string} string containing replaced values -- @example --- lua_util.jinja_template("HELLO {{FOO}} {{BAR}}!", {['FOO'] = 'LUA', ['BAR'] = 'WORLD'}) +-- lua_util.jinja_template("HELLO {=FOO=} {=BAR=}!", {['FOO'] = 'LUA', ['BAR'] = 'WORLD'}) -- "HELLO LUA WORLD!" --]] exports.jinja_template = function(text, env, skip_global_env) @@ -190,7 +190,7 @@ end -- @param {boolean} skip_global_env don't export Rspamd superglobals -- @return {string} string containing replaced values -- @example --- lua_util.jinja_template("HELLO {{FOO}} {{BAR}}!", {['FOO'] = 'LUA', ['BAR'] = 'WORLD'}) +-- lua_util.jinja_template("HELLO {=FOO=} {=BAR=}!", {['FOO'] = 'LUA', ['BAR'] = 'WORLD'}) -- "HELLO LUA WORLD!" --]] exports.jinja_template_file = function(filename, env, skip_global_env) |