View source for Module:Transcludable section
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
-- Module to create selectively transcluded sections using syntax which is
-- compatible with [[Module:Sports table]] and [[Module:Sports results]]
require('Module:No globals')
local p = {}
-- Main function
function p.main(frame)
-- Declare locals
local tsection = frame:getParent().args['transcludesection'] or ''
local bsection = frame.args['section'] or frame.args['1'] or ''
local editlink = frame.args['edit'] or ''
-- Exit early if we are using section transclusion for a different section
if( tsection ~= '' and bsection ~= '' ) then
if( tsection ~= bsection ) then
return ''
end
end
000
1:0
Template used on this page:
Return to Module:Transcludable section.