“模块:Lang”的版本间的差异

来自萌娘文库
跳转至: 导航搜索
(创建页面,内容为“local p = {} function p.quote(text, lang) if lang == 'zh' then return text else return '-{' .. text .. '}-' end end function p.wrap(text, lang) local span…”)
 
 
第2行: 第2行:
  
 
function p.quote(text, lang)
 
function p.quote(text, lang)
 +
--[[ 注:文库没有繁简转换相关问题,故注释掉
 
if lang == 'zh' then
 
if lang == 'zh' then
 
return text
 
return text
第7行: 第8行:
 
return '-{' .. text .. '}-'
 
return '-{' .. text .. '}-'
 
end
 
end
 +
--]]
 +
        return text
 
end
 
end
  

2020年9月23日 (三) 08:40的最新版本

此模块的文档可以在模块:Lang/doc创建

local p = {}

function p.quote(text, lang)
--[[ 注:文库没有繁简转换相关问题,故注释掉
	if lang == 'zh' then
		return text
	else
		return '-{' .. text .. '}-'
	end
--]]
        return text
end

function p.wrap(text, lang)
	local span = mw.html.create('span')
		:attr('lang', lang)
		:wikitext(p.quote(text, lang))
	return span
end

return p