mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.interpolation: Add '~' as the opposite of '&' (render sub-block if falsy)
One more magic character consumed!
This commit is contained in:
parent
33e7e5ef2d
commit
0ca2e88384
2 changed files with 14 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue