Module:Utility: Difference between revisions

From IdleOn MMO Wiki
mNo edit summary
mNo edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
local util = {}
local util = {}
-- Strings
-- Format with tooltip text, then text to show on page.
util.tooltipstruct = [[<span class="simple-tooltip simple-tooltip-inline tooltipstered" data-simple-tooltip="%s">%s</span>]]
-- Functions
function util.explode(list, delimiter)
    if delimiter == nil then
delimiter = "%s"
end
local t = {}
for str in string.gmatch(list, "([^" .. delimiter .. "]+)") do
table.insert(t, util.trimwhitespaces(str))
end
return t
end


util.tooltipstruct = [[<span class="simple-tooltip simple-tooltip-inline tooltipstered" data-simple-tooltip="%s">%s</span>]]
function util.trimwhitespaces(s)
  return s:match( "^%s*(.-)%s*$" )
end


return util
return util

Latest revision as of 18:26, 28 March 2024

Documentation for this module may be created at Module:Utility/doc

local util = {}
-- Strings
-- Format with tooltip text, then text to show on page.
util.tooltipstruct = [[<span class="simple-tooltip simple-tooltip-inline tooltipstered" data-simple-tooltip="%s">%s</span>]]


-- Functions
function util.explode(list, delimiter)
    if delimiter == nil then
		delimiter = "%s"
	end
	local t = {}
	for str in string.gmatch(list, "([^" .. delimiter .. "]+)") do
		table.insert(t, util.trimwhitespaces(str))
	end
	return t
end

function util.trimwhitespaces(s)
   return s:match( "^%s*(.-)%s*$" )
end

return util