Built site for gh-pages

This commit is contained in:
Quarto GHA Workflow Runner
2025-01-07 13:43:02 +00:00
parent 8937f97bcf
commit 3ac34fbede
32 changed files with 93 additions and 92 deletions

View File

@@ -2,7 +2,8 @@ const kProgressiveAttr = "data-src";
let categoriesLoaded = false;
window.quartoListingCategory = (category) => {
category = atob(category);
// category is URI encoded in EJS template for UTF-8 support
category = decodeURIComponent(atob(category));
if (categoriesLoaded) {
activateCategory(category);
setCategoryHash(category);