Module:OccDur: Revision history

Jump to navigation Jump to search
Diff selection: mark the radio boxes of the versions to compare or click on a revision date to view it. (cur) = difference from current version, (prev) = difference from preceding version,  m = minor edit, → = section edit

17 October 2024

  • curprev 00:1200:12, 17 October 2024Alex talk contribs 887 bytes +887 Created page with "local p = {} function p.invoke_main(frame) local args = frame:getParent().args return p.main(args) end function p.main(args) if args[1] == nil then return '<div class="noprint seealso">No argument has been specified for Template:OccDur.</div>' end local MAX_PARAMS = 7 local text = '<div class="noprint seealso">The following takes place during ' for i,v in ipairs(args) do if ( i > MAX_PARAMS ) then break end local link = '' .. v .. '' -- if t..."