All public logs

Jump to navigation Jump to search

Combined display of all available logs of JoJo's Bizarre Encyclopedia - JoJo Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 16:04, 25 February 2024 Vish talk contribs created page Module:Tabber (Created page with "local p = {} function getArgCount(args) i = 0 for inc, val in ipairs(args) do i = i + 1 end return i end function p.main(frame) parentArgs = frame:getParent().args content = "" for i = 1, getArgCount(parentArgs), 2 do if i ~= 1 then content = content .. "|-|" end content = content .. parentArgs[i] .. "=" .. parentArgs[i+1] end return frame:extensionTag('tabber', content) end return p")