Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

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

local p = {}

function p.quote(text, lang)
	if lang == 'zh' then
		return text
	end
	return '-{' .. text .. '}-'
end

function p.wrap(text, lang)
	return '<span lang="'..lang..'">'..p.quote(text, lang)..'</span>'
end

return p