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

来自科学ADV中文wiki
跳到导航 跳到搜索
(建立内容为“local p = {} function p.quote(text, lang) if lang == 'zh' then return text else return '-{' .. text .. '}-' end end function p.wrap(text, lang) local sp…”的新页面)
 
 
第5行: 第5行:
 
return text
 
return text
 
else
 
else
return '-{' .. text .. '}-'
+
-- 我们没开字词转换,不要这个
 +
-- return '-{' .. text .. '}-'
 +
return text
 
end
 
end
 
end
 
end

2022年7月4日 (一) 23:12的最新版本

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

local p = {}

function p.quote(text, lang)
	if lang == 'zh' then
		return text
	else
		-- 我们没开字词转换,不要这个
		-- return '-{' .. text .. '}-'
		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