diff options
author | johannst <johannst@users.noreply.github.com> | 2025-03-14 01:19:37 +0000 |
---|---|---|
committer | johannst <johannst@users.noreply.github.com> | 2025-03-14 01:19:37 +0000 |
commit | b6627f53bf459334446bb1e2c51728a764c8651d (patch) | |
tree | 91d1326986ddb28a4bf29071c6db1bd379814402 /book.js | |
parent | 2413e9cbad620ca20b3aaffeb9cf4bb132e6113f (diff) | |
download | notes-b6627f53bf459334446bb1e2c51728a764c8651d.tar.gz notes-b6627f53bf459334446bb1e2c51728a764c8651d.zip |
deploy: cb9e06f3a5bd9d42494e6abdaf61fb3fe19d4ea4
Diffstat (limited to 'book.js')
-rw-r--r-- | book.js | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -111,11 +111,11 @@ function playground_text(playground, hidden = true) { let text = playground_text(code_block); let classes = code_block.querySelector('code').classList; let edition = "2015"; - if(classes.contains("edition2018")) { - edition = "2018"; - } else if(classes.contains("edition2021")) { - edition = "2021"; - } + classes.forEach(className => { + if (className.startsWith("edition")) { + edition = className.slice(7); + } + }); var params = { version: "stable", optimize: "0", @@ -294,9 +294,9 @@ function playground_text(playground, hidden = true) { themeIds.push(el.id); }); var stylesheets = { - ayuHighlight: document.querySelector("[href$='ayu-highlight.css']"), - tomorrowNight: document.querySelector("[href$='tomorrow-night.css']"), - highlight: document.querySelector("[href$='highlight.css']"), + ayuHighlight: document.querySelector("#ayu-highlight-css"), + tomorrowNight: document.querySelector("#tomorrow-night-css"), + highlight: document.querySelector("#highlight-css"), }; function showThemes() { |