More actions
Combined display of all available logs of North Forge. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:59, 2024 June 16 Ttenbergen talk contribs created page Module:String (Created page with "-- Module:String local p = {} function p.split(frame) local delimiter = frame.args.delimiter or ";" local source = frame.args.source or "" local template = frame.args.template or "" local results = {} for part in (source..delimiter):gmatch("(.-)"..delimiter) do table.insert(results, frame:expandTemplate{title = template, args = {part}}) end return table.concat(results) end return p")