Module:Update history: Revision history

Jump to navigation Jump to search

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.

15 September 2024

  • curprev 23:2723:27, 15 September 2024Mgpt talk contribs 1,842 bytes +1,842 Created page with "local p = {} local mw = require('mw') local function findBlockEnd(content, start_pos) local open_braces = 0 local current_pos = start_pos while current_pos <= #content do local char = content:sub(current_pos, current_pos) if char == "{" then open_braces = open_braces + 1 elseif char == "}" then open_braces = open_braces - 1 if open_braces == 0 then return current_pos end..."