aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/code.js
blob: 3364f6cb845c412456ae0e58a88c104494f6c60b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// high-quality syntax highlighter
// TODO: Implement actual highlighter (or fix many regex bugs)

const term = (t) =>
  t
    .replaceAll(/'(.)'/g, "<span class='string'>'$1'</span>")
    .replaceAll(/"([^\"]*)"/g, "<span class='string'>\"$1\"</span>")
    .replaceAll(/(\([+-][0-9]+[ubt]?\))/g, "<span class='number'>$1</span>")
    .replaceAll(/(?<!\>)(\()/g, "<span class='left-app'>(</span>")
    .replaceAll(/(\))(?!\<)/g, "<span class='right-app'>)</span>")
    .replaceAll("[", "<span class='left-abs'>[</span>")
    .replaceAll("]", "<span class='right-abs'>]</span>")
    .replaceAll(/(?<!\([+-]\d*)([0-9])/g, "<span class='index'>$1</span>");

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) =>
        `<span class="com">:import</span> <a href='/std/${fixPath(
          p,
        )}.bruijn.html'>std/${p}</a> ${s}`,
    )
    .replaceAll(
      /^:input std\/(.*)$/gm,
      (_, p) =>
        `<span class="com">:input</span> <a href='/std/${fixPath(
          p,
        )}.bruijn.html'>std/${p}</a>`,
    )
    .replaceAll(
      /^:test (\(.*\)) (\(.*\))$/gm,
      (_, t1, t2) => `<span class='com'>:test</span> ${term(t1)} ${term(t2)}`,
    )
    .replaceAll(
      /^:time (.*)$/gm,
      (_, t) => `<span class='com'>:time</span> ${term(t)}`,
    )
    .replaceAll(
      /^([ \t]*[^:\n<#][^ ]*) (.*)$/gm,
      (_, d, t) => `<span class='def'>${d}</span> ${term(t)}`,
    )
    .replaceAll(/^# (.*)$/gm, "<span class='comment'># $1</span>")
    .replaceAll(/ ⧗ (.*)\n/g, " ⧗ <span class='type'>$1</span>\n");
};

window.onload = () => {
  [...document.querySelectorAll("code.language-bruijn")].forEach(highlight);
  [...document.querySelectorAll("code.bruijn")].forEach(highlightTerm);
};