summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/reaktor2.nix
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2021-09-28 23:02:50 +0200
committerlassulus <lassulus@lassul.us>2021-09-28 23:02:50 +0200
commit9998f618d59c0febed87de2a18e715ae89cbc79a (patch)
tree9373e28b26b03419de0bb058bdf36d5e69400f17 /krebs/2configs/reaktor2.nix
parente151cfd3298120ec541987d4beb155e18335a0d8 (diff)
reaktor2: add comment about unicode krepel magic
Diffstat (limited to 'krebs/2configs/reaktor2.nix')
-rw-r--r--krebs/2configs/reaktor2.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/2configs/reaktor2.nix b/krebs/2configs/reaktor2.nix
index cbf3e788..df66fd79 100644
--- a/krebs/2configs/reaktor2.nix
+++ b/krebs/2configs/reaktor2.nix
@@ -224,7 +224,7 @@ in {
spanDate.appendChild(document.createTextNode(entryDate));
const link = document.createElement("a");
- link.href = "http://wiki.r/agenda/" + encodeURIComponent(agendaItem.description.replaceAll("/", "\u29F8"));
+ link.href = "http://wiki.r/agenda/" + encodeURIComponent(agendaItem.description.replaceAll("/", "\u29F8")); // we use big solidus instead of slash because gollum will create directories
link.appendChild(document.createTextNode(agendaItem.description));
const dd = document.createElement("dd");