util.interpolation: Add '~' as the opposite of '&' (render sub-block if falsy)

One more magic character consumed!
This commit is contained in:
Matthew Wild 2020-09-09 17:10:33 +01:00
parent 33e7e5ef2d
commit 0ca2e88384
2 changed files with 14 additions and 1 deletions

View file

@ -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