Talk:Versions: Difference between revisions
Created page with "I generated this page using this js script after loading jquery to the browser console: <syntaxhighlight lang="javascript" line='line'> let versions = $("h3").text().replace(..." |
update script to not need jquery |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
I generated this page using this js script | I generated this page using this js script on browser console: | ||
<syntaxhighlight lang="javascript" | <syntaxhighlight lang="javascript"> | ||
var versions = Array.from(document.querySelectorAll("h3")).map(h => h.textContent).filter(x => x !== ""); | |||
var changelogs = Array.from(document.querySelectorAll("div.dlinfo > ul")).map(x => x.outerHTML); | |||
var result = ""; | var result = ""; |
Latest revision as of 06:40, 1 April 2022
I generated this page using this js script on browser console:
var versions = Array.from(document.querySelectorAll("h3")).map(h => h.textContent).filter(x => x !== "");
var changelogs = Array.from(document.querySelectorAll("div.dlinfo > ul")).map(x => x.outerHTML);
var result = "";
var i = 0;
for(var c of changelogs) {
result += "\n== Version: " + versions[i] + " ==\n";
result += c
result += "\n";
i++;
}
console.log(result);
copy(result);