新站点建设中,欢迎参与一起建设,各类人才都需要,围观也可以,谢谢!编辑帮助:目录 • BWIKI反馈留言板
全站通知:
模块:En
刷
历
编
跳到导航
跳到搜索
此模块的文档可以在模块:En/doc创建
local p = {}
local wikipedia = "https://wiki.guildwars2.com/wiki/"
local noLang = false
local function genEn(frame)
local enPage = frame.args[1]
if enPage ~= nil then
enPage = enPage:gsub(" ", "_")
else
enPage = ""
end
local display = frame.args[2]
if display ~= nil and display ~= "" then
display = display:gsub("_", " ")
else
display = enPage:gsub("_", " ")
end
local title = mw.title.getCurrentTitle()
local res = "([" .. wikipedia .. enPage .. " " .. display .. "])"
-- end
if noLang ~= true then
res = res .. "[[en:" .. enPage:gsub("_", " ") .. "]]"
end
return res
end
function p.en(frame)
return genEn(frame)
end
function p.enNoLang(frame)
noLang = true
return genEn(frame)
end
return p