prohtex

Results 61 comments of prohtex

Here's a little script you can stick in the admin interface header to achieve this right now: ``` document.addEventListener('DOMContentLoaded', () => { const isBookDetail = /^\/books\/[^\/]+$/.test(window.location.pathname); if (!isBookDetail) return; const...