Nomads | Philosophy | Index
<script> // Debug what's happening with Prism setTimeout(function() {
console.log('=== PRISM DEBUG ==='); console.log('Prism object exists:', typeof Prism !== 'undefined'); console.log('Prism.highlightAll exists:', typeof Prism !== 'undefined' && typeof Prism.highlightAll === 'function'); console.log('Code blocks found:', document.querySelectorAll('pre code').length); console.log('Language classes:', Array.from(document.querySelectorAll('pre code')).map(el => el.className)); // Force highlighting if (typeof Prism !== 'undefined' && Prism.highlightAll) { console.log('Manually triggering Prism.highlightAll()'); Prism.highlightAll(); }
}, 1000); </script>
console.log("Hello World!");