Module:NotYetInPrint: 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.

19 May 2024

  • curprev 08:2808:28, 19 May 2024SuitCase talk contribs 1,170 bytes +178 No edit summary
  • curprev 08:2708:27, 19 May 2024SuitCase talk contribs 992 bytes +992 Created page with "-- Module:NotYetInPrint local p = {} function p.getChaptersList() local listPage = mw.title.new('Template:ChapterList') if not listPage then return {} end local content = listPage:getContent() if not content then return {} end local chapters = {} for number, title in string.gmatch(content, "{{Chapter|number=([%d%.]+)|title=([^|]+)|") do table.insert(chapters, {number = tonumber(number), title = title}) end..."