If you want to create a personal page with a blog and stuff, you could use WonderCMS.
This requires only 5 files to be uploaded to a server, and presto! You've got yourself a functional webpage!
Small addition which i thought might be interesting to know.. What we are using here is called an IIFE. An IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined. (function() { return; })(); This makes it so we don't have to define a function to ru...
I would also probably go with a separate script file instead of the inline javascript. Give all the A elements a class name, eg "mail" and then use something like this: // shortcut to use "d" as document (defined in the last line) (d => { // select all instances of A with classna...
Quick pro hack: open your webpage in incognito mode, this way you can be logged in, and view as visitor! Also JS has (only since recently) BLA.replaceAll('DOT', '.') Both original and replace value can be strings here. Otherwise you can do this instead BLA.replace(/DOT/g, '.') The G behind DOT RegEx...
Trouble is I haven't learnt anything new since around then and you may recall the story about old dogs and new tricks. I can tell you there's some truth in it! ;) haha true story :D But, within my limits, I'll do what I can to assist. Awesome, seems like you are likely more skilled to do this than ...
There are a few things that can be added to the configuration of the editor. Taken from Monaco playground: wordWrap: 'wordWrapColumn', wordWrapColumn: 40, // Set this to false to not auto word wrap minified files wordWrapMinified: true, // try "same", "indent" or "none"...