diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-09-09 17:10:33 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-09-09 17:10:33 +0100 |
commit | c00bd4515da975d5db8004b2b92809e04aeaec32 (patch) | |
tree | 30aca2c3e00aa809020322a48f57445e0e21d3ba /util/interpolation.lua | |
parent | 97fc84beed9a3187537b9c8f3d68c7ea34fa82ac (diff) | |
download | prosody-c00bd4515da975d5db8004b2b92809e04aeaec32.tar.gz prosody-c00bd4515da975d5db8004b2b92809e04aeaec32.zip |
util.interpolation: Add '~' as the opposite of '&' (render sub-block if falsy)
One more magic character consumed!
Diffstat (limited to 'util/interpolation.lua')
-rw-r--r-- | util/interpolation.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/interpolation.lua b/util/interpolation.lua index e0ccf47b..808a45f2 100644 --- a/util/interpolation.lua +++ b/util/interpolation.lua @@ -64,6 +64,9 @@ local function new_render(pat, escape, funcs) elseif opt == '&' then if not value then return ""; end return render(s_sub(block, e), values); + elseif opt == '~' then + if value then return ""; end + return render(s_sub(block, e), values); elseif opt == '?' and not value then return render(s_sub(block, e), values); elseif value ~= nil then |