Content deleted Content added
better |
testing parent logic |
||
Line 16:
local args = {mw.ustring.match("[[File:Hey.jpg|thumb|left|250px|All for [[Module:Excerpt/portals]]|alt=text]]",r)}
return table.concat(args," -- ")
end
function p.parentingLogic(frame)
local parent = frame:getParent()
assert(parent,"invocation has no parent")
return "frame="..frame:getTitle().." parent="..parent:getTitle()
end
|