Compare commits
No commits in common. "4174fa42eb32f19ebb31ec127e53fb2cf5f9eb31" and "3fd257cbe7bfc424aac06663f04dec24aba2c3c5" have entirely different histories.
4174fa42eb
...
3fd257cbe7
4 changed files with 1 additions and 8 deletions
|
@ -285,9 +285,6 @@
|
||||||
},
|
},
|
||||||
"YIP": {
|
"YIP": {
|
||||||
"italicized": true
|
"italicized": true
|
||||||
},
|
|
||||||
"Lethal Company": {
|
|
||||||
"color": "red"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -398,9 +398,6 @@ function pregenerate() {
|
||||||
pregenFiles[i].html = converter(fs.readFileSync(pregenFiles[i].absolutePath).toString(), false)
|
pregenFiles[i].html = converter(fs.readFileSync(pregenFiles[i].absolutePath).toString(), false)
|
||||||
pregenFiles[i].html = pregenFiles[i].html.replaceAll("{PREGEN_TIME}", Date.now() - startTime)
|
pregenFiles[i].html = pregenFiles[i].html.replaceAll("{PREGEN_TIME}", Date.now() - startTime)
|
||||||
}
|
}
|
||||||
for (var i = 0; i < pregenFiles.length; i++) {
|
|
||||||
pregenFiles[i].html = pregenFiles[i].html.replaceAll("{PREGEN_TOTAL}", Date.now() - lastPregen)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pregenerate()
|
pregenerate()
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<p>I like the way it looks to have certain words be highlighted, makes it look fancier and easier to read (imo). So, when I remade this site, I went ahead and added an <em>Automatic Word Highlighting System!</em> This allows me have words automatically highlighted, on the server side, without having to do it in the code manually. Here's the current list of highlighted words:</p>
|
<p>I like the way it looks to have certain words be highlighted, makes it look fancier and easier to read (imo). So, when I remade this site, I went ahead and added an <em>Automatic Word Highlighting System!</em> This allows me have words automatically highlighted, on the server side, without having to do it in the code manually. Here's the current list of highlighted words:</p>
|
||||||
<p class="textBlock">{ALL_HIGHLIGHTS}</p>
|
<p class="textBlock">{ALL_HIGHLIGHTS}</p>
|
||||||
<p>As time continues, more words are added to the highlighting list, and I'm slowly adding more features, like disabling case sensitivity, boldness, italics, outlines, and more.</p>
|
<p>As time continues, more words are added to the highlighting list, and I'm slowly adding more features, like disabling case sensitivity, boldness, italics, outlines, and more.</p>
|
||||||
<p>You may notice some highlighted words are "missing" on this list. This is because <em>characters adjacent to the highlighted word are highlighted, too!</em> What that means is, I can type ILoveTetoTuesday! and it'll all be highlighted!</p>
|
<p>You may notice some highlighted words are "missing" on this list. This is because <em>characters adjacent to the highlighted word are highlighted, too!</em> What that means is, I can type HolyCowabungaILoveUltrakillItsSoEpic and it'll all be highlighted!</p>
|
||||||
<p class="note">P.S. If you're wondering what YIP is for, its for YIPPEEEEEEEEEEEEEEEEEEEEEE!</p>
|
<p class="note">P.S. If you're wondering what YIP is for, its for YIPPEEEEEEEEEEEEEEEEEEEEEE!</p>
|
||||||
<br>
|
<br>
|
||||||
<h3>I thought the site doesn't use Javascript? So why is it there?</h3>
|
<h3>I thought the site doesn't use Javascript? So why is it there?</h3>
|
||||||
|
|
|
@ -38,7 +38,6 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li>Page generation time: {LOAD_TIME}</li>
|
<li>Page generation time: {LOAD_TIME}</li>
|
||||||
<li>Pregeneration time: {PREGEN_TIME}ms</li>
|
<li>Pregeneration time: {PREGEN_TIME}ms</li>
|
||||||
<li>Total Pregen time (all pages): {PREGEN_TOTAL}ms</li>
|
|
||||||
<li>Uptime: {UPTIME}</li>
|
<li>Uptime: {UPTIME}</li>
|
||||||
<li>Last Lanyard update: {LAST_LANYARD}</li>
|
<li>Last Lanyard update: {LAST_LANYARD}</li>
|
||||||
<li>Last Pregeneration: {LAST_PREGEN}</li>
|
<li>Last Pregeneration: {LAST_PREGEN}</li>
|
||||||
|
|
Loading…
Reference in a new issue