跳至內容

「Module:Link」:修訂間差異

增加 10 位元組 、​ 2021年5月11日 (星期二)
無編輯摘要
無編輯摘要
無編輯摘要
行 19: 行 19:
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(a)..b..link(c)
return link(page,a)..b..link(page,c)
end
end