// high-quality syntax highlighter
// TODO: Implement actual parser (or fix MANY regex bugs)
// TODO: bug: -0 in (-0 0) is not highlighted as index
const term = (t) =>
t
.replaceAll(
/(?$1",
)
.replaceAll(/'([^\'])'/g, "'$1'")
.replaceAll(/"([^\"]*)"/g, "\"$1\"")
.replaceAll(
/(\([+-][0-9]+\.[0-9]+[+-][0-9]+\.[0-9]+i\))/g,
"$1",
)
.replaceAll(
/(\([+-][0-9]+\.[0-9]+[qr]?\))/g,
"$1",
)
.replaceAll(/(\([+-][0-9]+[ubtd]?\))/g, "$1")
.replaceAll(/(?)(\()/g, "(")
.replaceAll(/(\))(?!\<)/g, ")")
.replaceAll("[", "[")
.replaceAll("]", "]");
const highlightTerm = (elem) => {
elem.innerHTML = term(elem.innerHTML);
};
const highlight = (elem) => {
const fixPath = (p) => p.replace("/", "_");
elem.innerHTML = elem.innerHTML
.replaceAll(
/^:import std\/(.*) (.*)$/gm,
(_, p, s) =>
`:import std/${p} ${s}`,
)
.replaceAll(
/^:input std\/(.*)$/gm,
(_, p) =>
`:input std/${p}`,
)
.replaceAll(
/^:import (.*) (.*)$/gm,
(_, p, s) => `:import ${p} ${s}`,
)
.replaceAll(
/^:test (\(.*\)) (\(.*\))$/gm,
(_, t1, t2) => `:test ${term(t1)} ${term(t2)}`,
)
.replaceAll(
/^:time (.*)$/gm,
(_, t) => `:time ${term(t)}`,
)
.replaceAll(
/^([ \t]*[^:\n<#][^ ]*) (.*)$/gm,
(_, d, t) => `${d} ${term(t)}`,
)
.replaceAll(/^# (.*)$/gm, "")
.replaceAll(/ ⧗ (.*)\n/g, " ⧗ $1\n");
};
window.onload = () => {
[...document.querySelectorAll("code.language-bruijn")].forEach(highlight);
[...document.querySelectorAll("code.bruijn")].forEach(highlightTerm);
};