Jump to content

Module:HTMLDecode

From Simple English Wikipedia, the free encyclopedia
Revision as of 18:53, 20 August 2020 by Djsasso (talk | changes) (1 revision imported from en:Module:HTMLDecode)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Module:HTMLDecode can be used to remove HTML encoding from any text.

{{#invoke:HTMLDecode | HTMLDecode | text=***text to remove HTML encoding from*** }}



local i = {};

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

return i;