ref: 253e5fdc699fe915305c3f685843dcd45f05b3c9
dir: /docs/themes/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') } }