Toggle menu
15
236
75
27.7K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 02:11, 18 February 2025 by Prd (talk | contribs) (Created page with "local i = {}; function i.HTMLDecode(frame) return mw.text.decode(frame.args["text"]); end return i;")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Usage

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;
Contents