All public logs
Jump to navigation
Jump to search
Combined display of all available logs of IxWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 13:31, 30 July 2024 Heku talk contribs created page Module:GetFirstImage (Created page with "local p = {} function p.getFirstImage(frame) local pageName = frame.args[1] if not pageName then return '' end local page = mw.title.new(pageName) if not page then return '' end local content = page:getContent() if not content then return '' end -- Look for the first [[File: or [[Image: in the content local fileName = content:match("%[%[[Ff]ile:([^%]|]+)") or content:match("%[%[[Ii]mage:([^%]|]+)") if fileName then...")