Module:Link:修订间差异
小无编辑摘要 |
小无编辑摘要 标签:移动版编辑 移动版网页编辑 |
||
(未显示同一用户的13个中间版本) | |||
第1行: | 第1行: | ||
local getArgs = require('Module:Arguments').getArgs | |||
local p = {} | local p = {} | ||
function p.titular( | local function makeInvokeFunc(funcName) | ||
return function (frame) | |||
local args = getArgs(frame) | |||
return p[funcName](args) | |||
end | |||
end | |||
p.titular = makeInvokeFunc('_titular') | |||
function p._titular(args) | |||
local result="" | local result="" | ||
for i,k in ipairs(args) do | for i,k in ipairs(args) do | ||
result=result..'<span id="'..k..'"></span>' | result=result..'<span id="'..k..'"></span>' | ||
第11行: | 第20行: | ||
function link(page,name) | function link(page,name) | ||
local result= '[['..page..'列表#'..name..'|'..name..']]' | |||
return result | |||
end | end | ||
function p.link( | p.link = makeInvokeFunc('_link') | ||
return | |||
function p._link(args) | |||
local page,text=args[1],args[2] | |||
local a,b,c | |||
a,b = text:match('([^\s]*) (feat.*)') | |||
if a and b then | |||
return link(page,a)..' '..b | |||
end | |||
a,b,c = text:match('([^\s]*) (vs) ([^\s]*)') | |||
if a and b and c then | |||
return link(page,a)..' '..b..' '..link(page,c) | |||
end | |||
a,b,c = text:match('([^\s]*) (×) ([^\s]*)') | |||
if a and b and c then | |||
return link(page,a)..' '..b..' '..link(page,c) | |||
end | |||
a,b,c = text:match('([^\s]*) (vs.) ([^\s]*)') | |||
if a and b and c then | |||
return link(page,a)..' '..b..' '..link(page,c) | |||
end | |||
a,b,c = text:match('([^\s]*) (x) ([^\s]*)') | |||
if a and b and c then | |||
return link(page,a)..' '..b..' '..link(page,c) | |||
end | |||
a,b,c = text:match('([^\s]*) (&) ([^\s]*)') | |||
if a and b and c then | |||
return link(page,a)..' '..b..' '..link(page,c) | |||
end | |||
return link(page,text) | |||
end | end | ||
return p | return p |
2021年7月21日 (三) 10:20的最新版本
可在Module:Link/doc创建此模块的帮助文档
local getArgs = require('Module:Arguments').getArgs
local p = {}
local function makeInvokeFunc(funcName)
return function (frame)
local args = getArgs(frame)
return p[funcName](args)
end
end
p.titular = makeInvokeFunc('_titular')
function p._titular(args)
local result=""
for i,k in ipairs(args) do
result=result..'<span id="'..k..'"></span>'
end
return result
end
function link(page,name)
local result= '[['..page..'列表#'..name..'|'..name..']]'
return result
end
p.link = makeInvokeFunc('_link')
function p._link(args)
local page,text=args[1],args[2]
local a,b,c
a,b = text:match('([^\s]*) (feat.*)')
if a and b then
return link(page,a)..' '..b
end
a,b,c = text:match('([^\s]*) (vs) ([^\s]*)')
if a and b and c then
return link(page,a)..' '..b..' '..link(page,c)
end
a,b,c = text:match('([^\s]*) (×) ([^\s]*)')
if a and b and c then
return link(page,a)..' '..b..' '..link(page,c)
end
a,b,c = text:match('([^\s]*) (vs.) ([^\s]*)')
if a and b and c then
return link(page,a)..' '..b..' '..link(page,c)
end
a,b,c = text:match('([^\s]*) (x) ([^\s]*)')
if a and b and c then
return link(page,a)..' '..b..' '..link(page,c)
end
a,b,c = text:match('([^\s]*) (&) ([^\s]*)')
if a and b and c then
return link(page,a)..' '..b..' '..link(page,c)
end
return link(page,text)
end
return p