Difference between revisions of "Module:Lang"
m |
|||
Line 2: | Line 2: | ||
function p.quote(text, lang) | function p.quote(text, lang) | ||
− | + | return text | |
− | |||
− | |||
− | |||
− | |||
end | end | ||
Latest revision as of 01:06, 3 April 2017
local p = {} function p.quote(text, lang) return text end function p.wrap(text, lang) local span = mw.html.create('span') :attr('lang', lang) :wikitext(text) return span end return p