Difference between revisions of "Module:Sandbox/Ahecht/trim date"
< Module:Sandbox | Ahecht
Jump to navigation
Jump to search
blackwiki>Ahecht (defub) |
blackwiki>Ahecht (debug) |
||
| Line 8: | Line 8: | ||
date3 = string.gsub( date2, "<.-nowiki.->", "") | date3 = string.gsub( date2, "<.-nowiki.->", "") | ||
date4 = string.gsub( date3, "<.*>", "") | date4 = string.gsub( date3, "<.*>", "") | ||
| − | return | + | return date |
end | end | ||
return p | return p | ||
Revision as of 15:11, 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
date2 = string.gsub( date, "<.-mw%-formatted%-date.->", "")
date3 = string.gsub( date2, "<.-nowiki.->", "")
date4 = string.gsub( date3, "<.*>", "")
return date
end
return p