“模块: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...”) |
(没有差异)
|
2017年1月16日 (一) 03:17的最新版本
此模块的文档可以在模块:Lang/doc创建
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 = mw.html.create('span') :attr('lang', lang) :wikitext(p.quote(text, lang)) return span end return p