Difference between revisions of "Module:Sandbox/Ahecht/trim date"

From blackwiki
Jump to navigation Jump to search
blackwiki>Ahecht
(debug)
blackwiki>Ahecht
(debug)
Line 5: Line 5:
 
if date == nil then date = frame.args[1] end
 
if date == nil then date = frame.args[1] end
 
if date == nil then date = "123" end
 
if date == nil then date = "123" end
date2 = string.gsub( date, "<.-mw%-formatted%-date.-%gt;", "")
+
dateout = string.gsub( date, "%lt;", "<" )
date3 = string.gsub( date2, "&lt;.-nowiki.-%gt;", "")
+
dateout = string.gsub( dateout, "%gt;", ">" )
date4 = string.gsub( date3, "&lt;.*%gt;", "")
+
dateout = string.gsub( dateout, "<.-mw%-formatted%-date.->", "" )
return date4
+
dateout = string.gsub( dateout, "<.-nowiki.->", "" )
 +
dateout = string.gsub( dateout, "<.*>", "" )
 +
return dateout
 
end
 
end
  
 
return p
 
return p

Revision as of 15:15, 25 April 2017

Documentation for this module may be created at Module:Sandbox/Ahecht/trim date/doc

local p = {}

function p.trim(frame)
	local date = frame:getParent().args[1]
	if date == nil then date = frame.args[1] end
	if date == nil then date = "123" end
	dateout = string.gsub( date, "%lt;", "<" )
	dateout = string.gsub( dateout, "%gt;", ">" )
	dateout = string.gsub( dateout, "<.-mw%-formatted%-date.->", "" )
	dateout = string.gsub( dateout, "<.-nowiki.->", "" )
	dateout = string.gsub( dateout, "<.*>", "" )
	return dateout
end

return p