From Wikipedia, the free encyclopedia
require('strict')
local p = {}
p.main = function()
local template_code = mw.title.new('Template:WikiProject Medicine/sandbox'):getContent()
local match = string.match(
template_code,
'importance' .. '%s*=%s*{{{([^|}]*)'
)
return match
end
return p