模块:WikitextLC
wiki:zh>Liangent2013年4月26日 (五) 22:17的版本
local p = {} function p.selective( content ) local text = '-{' for variant, value in pairs( content ) do if value == '' then value = '<span/>' end text = text .. variant .. ':' .. value .. ';' end text = text .. '}-' return text end function p.converted( content, variant, force ) if type( variant ) == 'table' then variant = table.concat( variant, ';' ) end return '-{' .. ( force and '' or 'zh;' ) .. variant .. '|' .. content .. '}-' end function p.raw( content ) return '-{R|' .. content .. '}-' end function p.title( content ) return '-{T|' .. content .. '}-' end function p.hidden( content ) return '-{H|' .. content .. '}-' end return p