模块:HTMLDecode

来自决策链云智库
Zeroclanzhang讨论 | 贡献2024年1月17日 (三) 23:48的版本 (创建页面,内容为“local i = {}; function i.HTMLDecode(frame) return mw.text.decode(frame.args["text"]); end return i;”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

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;