Ambox notice.png
Scheduled Maintenance
The wiki will be going down for routine maintenance on Friday, October 4th, 2024, at approximately 3:30 PM Central Time (15:30) or 1:30 PM Pacific Time. The site may be inaccessible during this time and the database will be locked from editing. We expect the maintenance to take about thirty minutes. We strongly encourage joining our Discord for updates.

Module:Unstrip: Difference between revisions

Jump to navigation Jump to search
m (Protected "Module:Unstrip": High-risk module ([Edit=Require template editor access] (indefinite)))
 
m (1 revision imported)
 

Latest revision as of 17:57, 22 March 2019

Documentation for this module may be created at Module:Unstrip/doc

-- 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