Jump to content

Module:Unstrip

Gikan sa Bikol Sentral na Wikipedia, an talingkas na ensiklopedya
Pagbabago puon kaitong 17:18, 31 Marso 2018 ni ShiminUfesoj (urulay | ambag) (Pinagmukna an pahina kaining "-- This module provides a frontend to the mw.text.unstrip and unstripNoWiki functions local p = {} function p.unstrip(frame) return mw.text.unstrip(frame.args[1]...")
(iba) ← Mas luma | Presenteng pagbabago (iba) | Mas bago → (iba)

Lua error in Module:Documentation at line 144: message: type error in message cfg.container (string expected, got nil).

-- This module provides a frontend to the mw.text.unstrip and unstripNoWiki functions
local p = {}

function p.unstrip(frame)
	return mw.text.unstrip(frame.args[1] or '')
end

function p.unstripNoWiki(frame)
	return mw.text.unstripNoWiki(frame.args[1] or '')
end

return p