Files
boostlook/boostlook.rb
2025-05-30 12:01:06 -04:00

78 lines
2.7 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Asciidoctor::Extensions.register do
postprocessor do
process do |doc, output|
output = output.sub(/(<body[^>]*>)/, '\1<div class="boostlook">')
output = output.sub('</body>', '</div></body>')
# Comment out toggle button - TOC should always be visible
# output = output.sub(/(<body.*?<div[^>]*id="toc"[^>]*>)/m, '\1<button id="toggle-toc" title="Show Table of Contents" aria-expanded="false" aria-controls="toc">☰</button>')
output = output.sub(/(<body.*?<div[^>]*id="footer"[^>]*>)/m, '</div>\1')
script_tag = <<~SCRIPT
<script>
(function() {
const html = document.documentElement;
// Always show TOC - no toggle functionality needed
html.classList.add('toc-visible');
html.classList.add('toc-pinned');
html.classList.remove('toc-hidden');
// Comment out toggle functionality since TOC should always be visible
/*
const isPinned = localStorage.getItem('tocPinned') === 'true';
html.classList.add('toc-hidden');
if (isPinned) {
html.classList.add('toc-pinned');
html.classList.add('toc-visible');
html.classList.remove('toc-hidden');
}
document.addEventListener("DOMContentLoaded", () => {
const tocButton = document.getElementById("toggle-toc");
const toc = document.getElementById("toc");
if (!tocButton || !toc) return;
let isPinned = localStorage.getItem('tocPinned') === 'true';
function updateTocVisibility(visible) {
html.classList.toggle("toc-visible", visible);
html.classList.toggle("toc-hidden", !visible);
tocButton.setAttribute("aria-expanded", visible);
tocButton.textContent = visible ? "×" : "☰";
tocButton.setAttribute("title", visible ? "Hide Table of Contents" : "Show Table of Contents");
}
tocButton.addEventListener("click", () => {
isPinned = !isPinned;
localStorage.setItem('tocPinned', isPinned);
html.classList.toggle('toc-pinned', isPinned);
updateTocVisibility(isPinned);
});
tocButton.addEventListener("mouseenter", () => {
if (!isPinned) {
updateTocVisibility(true);
}
});
toc.addEventListener("mouseleave", () => {
if (!isPinned) {
updateTocVisibility(false);
}
});
updateTocVisibility(isPinned);
});
*/
})();
</script>
SCRIPT
output = output.sub('</body>', "#{script_tag}</body>")
output
end
end
end