ref: 2e711a28c71e8667258e5ab824f9b9a71c261b0a
dir: /_vendor/github.com/gohugoio/gohugoioTheme/assets/js/codeblocks.js/
let article = document.getElementById('prose') if (article) { let codeBlocks = article.getElementsByTagName('code') for (let [key, codeBlock] of Object.entries(codeBlocks)){ var widthDif = codeBlock.scrollWidth - codeBlock.clientWidth if (widthDif > 0) codeBlock.parentNode.classList.add('expand') } }