Combined display of all available logs of The Fortune Bringers. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 00:54, 25 May 2025 Dweller talk contribs created page Module:SummarySnippet (Created page with "local p = {} -- Trims whitespace from a string local function trim(s) return s:match("^%s*(.-)%s*$") end function p.fromPage(frame) local page = frame.args[1] local length = tonumber(frame.args[2]) or 150 if not page or page == '' then return "No page name provided." end -- Fetch the raw wikitext local content = mw.title.new(page) if not content or not content.exists then return "Page not found." end local text = content:getContent() if not text then...")