Module:ClassMatrix: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

30 January 2023

  • curprev 02:4402:44, 30 January 2023Editor talk contribs 2,816 bytes +2,816 Created page with "local getArgs = require('Module:Arguments').getArgs; local defArgs = require('Module:Arguments').defaultArgs; local classMatrix = {}; function classMatrix.XAxis( frame ) local args = defArgs(getArgs(frame), 3, "", "", ""); local arg1 = args[1]; local arg2 = args[2]; local arg3 = args[3]; local text = ""; local H = {}; local T = {}; for id in arg1:gmatch("%S+") do str = string.sub(id,arg2,arg3); if (H[str] == nil) then H[str] = 1; table.ins..."