模块:Lang

来自科学ADV中文wiki
HimuL讨论 | 贡献2022年7月1日 (五) 19:32的版本 (建立内容为“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…”的新页面)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

此模块的文档可以在模块: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