Combined display of all available logs of YumeWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:44, 11 July 2024 Reas talk contribs created page Module:SoundtrackTable (Created page with "local p = {} function splitByPlainSeparator(str, sep, max) local z = #sep; sep = '^.-'..sep:gsub('[$%%()*+%-.?%[%]^]', '%%%0') local t,n,p, q,r = {},1,1, str:find(sep) while q and n~=max do t[n],n,p = str:sub(q,r-z),n+1,r+1 q,r = str:find(sep,p) end t[n] = str:sub(p) return t end function toMap(entries) local fields = splitByPlainSeparator(entries, '$$') mw.log(fields) local map = {} for var=1,#fields-1 do local tmp = {}...")