ഘടകം:Unstrip
ഈ ഘടകത്തിന്റെ വിവരണം ഘടകം:Unstrip/വിവരണം എന്ന താളിൽ നിർമ്മിക്കാവുന്നതാണ്
-- 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