From ddff820d2bde9d55f5907558940e57636b8908cb Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 10 Nov 2024 16:07:22 -0500 Subject: [PATCH] fix(post): correct hiding --- scripts/post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/post.js b/scripts/post.js index bfe4d6c..f55cabe 100644 --- a/scripts/post.js +++ b/scripts/post.js @@ -11,7 +11,7 @@ const tagToHeader = new Map([ const makeFold = (h, i) => { const toggle = document.createElement("span"); toggle.style.fontStyle = "normal"; - toggle.textContent = "v"; + toggle.textContent = ">"; // only unfold first algorithm problem if (urlToTopic() === "algorithms" && i === 0) toggle.textContent = "v";