Compare commits

..

No commits in common. "3fd257cbe7bfc424aac06663f04dec24aba2c3c5" and "53314a14fb4fe03cad0bbccd02b5d731772905bd" have entirely different histories.

3 changed files with 8 additions and 15 deletions

View file

@ -36,7 +36,7 @@ for (var i = 0; i < globResult.length; i++) {
}) })
} }
(async function () { (async function() {
globResult = glob.globSync("**/static/**/*.js", { absolute: true }) globResult = glob.globSync("**/static/**/*.js", { absolute: true })
for (var i = 0; i < globResult.length; i++) { for (var i = 0; i < globResult.length; i++) {
javascriptCache[globResult[i]] = await minify({ javascriptCache[globResult[i]] = await minify({
@ -156,18 +156,13 @@ function highlighter(json, full = true) {
classes = `class="${classes}"` classes = `class="${classes}"`
} }
var stuff = (startContent + highTable[index] + endContent).trim() var replacement = `<span ${style} ${classes} ${link}>${startContent + highTable[index] + endContent}</span>`
if (!stuff.includes("span")) { if (link) {
var replacement = `<span ${style} ${classes} ${link}>${stuff}</span>` replacement = `<a href="${link}">${replacement}</a>`
if (link) {
replacement = `<a href="${link}">${replacement}</a>`
}
element.content = element.content.substring(0, spanStart) + replacement + element.content.substring(spanEnd)
} else {
element.content = element.content.replace(termKey, highTable[index])
} }
element.content = element.content.substring(0, spanStart) + replacement + element.content.substring(spanEnd)
} }
} }

View file

@ -33,8 +33,6 @@
<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 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>
<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>
<p>Originally, all my sites were completely Javascript free. As of late, though, I decided to add Javascript to this one. Javascript will <b><em>NEVER</em></b> be a requirement on this site. Javascript will ONLY be used where necessary, and I will do everything possible to make the experience indistinguishable.</p> <p>Originally, all my sites were completely Javascript free. As of late, though, I decided to add Javascript to this one. Javascript will <b><em>NEVER</em></b> be a requirement on this site. Javascript will ONLY be used where necessary, and I will do everything possible to make the experience indistinguishable.</p>

View file

@ -85,8 +85,8 @@
<h1>Socials</h1> <h1>Socials</h1>
{PATH_SOCIALS} {PATH_SOCIALS}
<br> <br>
<h1><hr>FAQ</h1> <!-- <h1><hr>FAQ</h1>
{PATH_FAQ} {PATH_FAQ} -->
{SELECTED_VIDEO} {SELECTED_VIDEO}