Module:Unstrip: Difference between revisions
(Per edit request) |
m (1 revision imported from wikipedia:Module:Unstrip) |
Latest revision as of 00:33, 17 January 2024
Documentation for this module may be created at Module:Unstrip/doc
Script error: Lua error: Internal error: The interpreter exited with status 127.
-- 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