View source for Module:Wikitable
MyWikiBiz, Author Your Legacy — Saturday April 05, 2025
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
local p = {};
local getArgs = require('Module:Arguments').getArgs
local buffer = require("Module:Buffer")('{|')
function p.main(frame)
local args = getArgs(frame, {removeBlanks=false, trim=false} )
for k, v in pairs(args) do
if type(k) ~= 'number' then buffer:_(string.format(string.match(v, '^["\']') and ' %s=%s' or ' %s="%s"', k, v)) end
end
buffer:_'\n'
for _, v in ipairs(args) do
if not string.match(v, '^!') then buffer:_'|' end
buffer:_(v)
end
return table.concat(buffer:_'\n|}')
end
return p;
000
1:0
Templates used on this page:
- Template:BRA (view source)
- Template:Cite web (view source)
- Template:ESP (view source)
- Template:JPN (view source)
- Template:Module rating (view source)
- Template:Pagetype (view source)
- Template:Reflist (view source)
- Template:T (view source)
- Template:Tag (view source)
- Template:Tl (view source)
- Template:USA (view source)
- Module:Citation/CS1 (view source)
- Module:Citation/CS1/COinS (view source)
- Module:Citation/CS1/Configuration (view source)
- Module:Citation/CS1/Date validation (view source)
- Module:Citation/CS1/Identifiers (view source)
- Module:Citation/CS1/Utilities (view source)
- Module:Citation/CS1/Whitelist (view source)
- Module:No globals (view source)
- Module:Wikitable (view source)
- Module:Wikitable/doc (view source)
- Module talk:Wikitable/example (view source)
Return to Module:Wikitable.