Home
Random
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:Sandbox/Sameboat/m1
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
local getArgs = require('Module:Arguments').getArgs local p = {} function p.navbar(frame) local navbar = require('Module:Navbar').navbar return navbar('asd') end p.lengthcheck = function() local asd = '123456789' return string.len(asd) end p.indextable = function() local result = '' local t={} t[#t+1]='odin'.. 1 + 0 t[#t+1]='dva'.. '1 + 1' t[#t+1]='tri'.. 1.5 * 2 return table.concat(t, ', ') .. '.' end local function makeInvokeFunction(funcName) -- makes a function that can be returned from #invoke, using -- [[Module:Arguments]]. return function (frame) local args = getArgs(frame, {parentOnly = true}) return p[funcName](args) end end p.link = makeInvokeFunction('_link') function p._link(args) local result='{|class="wikitable"\n|-' local t = { {h='a', d='1a'}, {h='b', d='2b'}, {h='c', d='3c'}, {h='d', d='4d'}, } t[5] = {h = 'e', d = '5e'} t[6] = {h = 'f', d = '6f'} t[7] = {h = 'g', d = '7g'} for i,v in ipairs(t) do if i==5 then break else result=result..'\n!'..v.h end end result=result..'\n|-' for i,v in ipairs(t) do result=result..'\n|'..v.d end result=result..'\n|-' local t = { {h='aa', d='1aa'}, {h='bb', d='2bb'}, {h='cc', d='3cc'}, {h='dd', d='4dd'}, } for i,v in ipairs(t) do result=result..'\n!'..v.h end result=result..'\n|-' for i,v in ipairs(t) do result=result..'\n|'..v.d end return result .. '\n|}' end p.row = makeInvokeFunction('_row') function p._row(args) local somelist = args[1] local result result = '' for k1, v1 in ipairs(mw.text.split(somelist, '\n')) do for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do if k2 > 2 then break elseif (k2 % 2 == 1) then if (k1 % 2 == 0) then result = result .. '\n|-style="background:#888"\n!' .. k1 .. '\n|' .. v2 else result = result .. '\n|-\n!' .. k1 .. '\n|' .. v2 end elseif (k2 % 2 == 0) then result = result .. '||' .. v2 end end end result = '{|class="wikitable"' .. result .. '\n|}' return result end return p
Summary:
Please note that all contributions to Stockhub may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Stockhub:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Module:Sandbox/Sameboat/m1/doc
(
edit
)