更改

添加290字节 、 2013年4月14日 (日) 15:58
建立内容为“local p = {} function p.selective( content ) local text = '-{' for variant, value in content do if value == '' then val...”的新頁面
local p = {}

function p.selective( content )
local text = '-{'
for variant, value in content do
if value == '' then
value = '<span/>'
end
text = text .. variant .. ':' .. value .. ';'
end
text = text .. '}-'
return text
end

return p
匿名用户