6,571
次編輯
小無編輯摘要 |
小無編輯摘要 |
||
行 17: | 行 17: | ||
function p.link(frame) | function p.link(frame) | ||
local page,text=mw.getCurrentFrame():getParent().args[1],mw.getCurrentFrame():getParent().args[2] | local page,text=mw.getCurrentFrame():getParent().args[1],mw.getCurrentFrame():getParent().args[2] | ||
local a,b,c | |||
a,b = text:match('([^\s]*) (feat.*)') | |||
if a and b then | |||
return link(page,a)..' '..b | |||
end | |||
local a,b,c = text:match('([^\s]*) (vs) ([^\s]*)') | local a,b,c = text:match('([^\s]*) (vs) ([^\s]*)') | ||
if a and b and c then | if a and b and c then | ||
return link(page,a)..b..link(page,c) | return link(page,a)..' '..b..' '..link(page,c) | ||
end | end | ||