Main public logs
This is a combined display of all logs except the patrol, review, tag and thanks logs:
- Who performed the action – enter their name without prefix under "Performer".
- The page or user affected by an action – enter the page or user name (prefixed with "User:") under "Target".
- 18:26, 9 September 2024 Polygnotus talk contribs created page User:Polygnotus/Scripts/WikiPageToArray.js (←Created page with 'async function fetchWikitextArray(pageName) { const apiUrl = `https://en.wikipedia.org/w/api.php?action=parse&page=${encodeURIComponent(pageName)}&prop=wikitext&format=json&origin=*`; try { const response = await fetch(apiUrl); const data = await response.json(); if (data.parse && data.parse.wikitext) { const wikitext = data.parse.wikitext['*']; return wikitext .split('\n') .map(line => line.trim())...')