Jump to content

Module:HTMLDecode

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by WOSlinker (talk | contribs) at 11:14, 19 April 2020 (Created page with 'local i = {}; function i.HTMLDecode(frame) return mw.text.decode(frame.args["text"]); end return i;'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local i = {};

function i.HTMLDecode(frame)
    return mw.text.decode(frame.args["text"]);
end

return i;