View source for Module:Infobox film/track
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.
local p = {}
local function check(args, sources, targets)
local source
for _, param in ipairs(sources) do
if args[param] and args[param] ~= '' then
source = param
break
end
end
if not source then
return nil
end
local warnings = {}
for link in mw.ustring.gmatch(args[source], '%[%[[^%[%]]+%]%]') do
local name = mw.ustring.match(link, '([^%|]+)%]%]$', 3)
for _, param in ipairs(targets) do
if args[param] and args[param] ~= '' then
local match = mw.ustring.match(args[param], '.?.?%f[%w]' .. name .. '%f[%W]')
-- Eliminate duplicate links
000
1:0
Templates used on this page:
- Template:Info (view source)
- Template:Mbox (view source)
- Template:Notice (view source)
- Template:Para (view source)
- Template:Sandbox other (view source)
- Template:Template link (view source)
- Template:Tl (view source)
- Module:Arguments (view source)
- Module:Infobox film/track/doc (view source)
- Module:Message box (view source)
- Module:Message box/configuration (view source)
- Module:No globals (view source)
- Module:String (view source)
- Module:Yesno (view source)
Return to Module:Infobox film/track.