×
Create a new article
Write your page title here:
We currently have 3,035 articles on YumeWiki. Type your article name above or click on one of the titles below and start writing!



YumeWiki
3,035Articles
Revision as of 12:33, 11 July 2024 by Reas (talk | contribs)

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

local p = {}

function lines(str)
   local t = {}
   local function helper(line)
      table.insert(t, line)
      return ""
   end
   helper((str:gsub("(.-)$$", helper)))
   return t
end


function p.table(frame)
	local entries = frame.args['entries']:gsub('\n','')
	local fields = lines(entries)
	return table.concat(fields, ' ////////// ')
	--[[local result = "0"
	for var=1,tonumber(frame.args[1])-1 do
		result = result .. "," .. tostring(var)
	end
	return result]]--
end

return p