De Wikipedia, la enciclopedia libre
Uso
Module:HTMLDecode se puede utilizar para retirar la codificación HTML de cualquier texto.
{{#invoke:HTMLDecode | HTMLDecode | text=***texto del que retirar el encoding HTML*** }}
local i = {};
function i.HTMLDecode(frame)
return mw.text.decode(frame.args["text"]);
end
return i;