Module:Unstrip: Difference between revisions
Appearance
hp>Pppery Per edit request |
Humanipedia (talk | contribs) m 1 revision imported |
(No difference)
|
Latest revision as of 14:01, 3 February 2025
Implements {{Unstrip}}, {{UnstripNoWiki}}, and {{KillMarkers}}
- mw:Extension:Scribunto/Lua reference manual#mw.text.unstrip
- mw:Extension:Scribunto/Lua reference manual#mw.text.unstripNoWiki
- mw:Extension:Scribunto/Lua reference manual#mw.text.killMarkers
See also[edit source]
-- This module provides a frontend to the mw.text.unstrip, unstripNoWiki and killMarkers functions
local p = {}
function p.unstrip(frame)
return mw.text.unstrip(frame.args[1])
end
function p.unstripNoWiki(frame)
return mw.text.unstripNoWiki(frame.args[1])
end
function p.killMarkers(frame)
return mw.text.killMarkers(frame.args[1])
end
return p