dump = require "Lua.lib.inspect" json = require "Lua.lib.dkjson" require "userlib.commons" function elua_out(value) internal_elua_out(__stringbuilder, tostring(value)) end function htmlize(s) s = s:gsub('&', '&') s = s:gsub('<', '<') s = s:gsub('>', '>') if s == ' ' then s = ' ' end return s end function dumppre(value) return '
' .. htmlize(dump(value)) .. '' end