All public logs

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

Logs
  • 08:27, 19 May 2024 SuitCase talk contribs created page Module:NotYetInPrint (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...")