Difference between revisions of "Module:Unstrip"

From blackwiki
Jump to navigation Jump to search
blackwiki>Petr Matas
(Add unstripNoWiki)
m (6 revisions imported)
 
(3 intermediate revisions by 2 users not shown)
Line 9: Line 9:
 
return mw.text.unstripNoWiki(frame.args[1] or '')
 
return mw.text.unstripNoWiki(frame.args[1] or '')
 
end
 
end
 
+
function p.killMarkers(frame)
 +
local text = frame.args[1]
 +
text = mw.text.killMarkers(text)
 +
:gsub("^%s+", "") --strip leading
 +
:gsub("%s+$", "") --and trailing spaces
 +
return text
 +
end
 
return p
 
return p

Latest revision as of 04:54, 30 September 2020

-- 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
function p.killMarkers(frame)
	local text = frame.args[1]
	text = mw.text.killMarkers(text)
		:gsub("^%s+", "") --strip leading
		:gsub("%s+$", "") --and trailing spaces
	return text
end
return p