Modularize code;

Add packaging instructions;
Add modules to handle Gemini file type (no Gemini server yet);
Improve handling of configuration.
This commit is contained in:
Schimon Jehudah, Adv. 2024-11-12 15:25:05 +02:00
parent 84e54085b5
commit 766e51af4c
46 changed files with 2359 additions and 663 deletions

View file

@ -0,0 +1,8 @@
// Convert ISO8601 To UTC
window.onload = function(){
for (element of document.querySelectorAll('#articles > ul > li > div > h4')) {
timestamp = new Date(element.textContent);
element.textContent = timestamp.toUTCString();
}
}