ref: a8cb1b07b4cf7fcf0e949657cb03c1a4838f975e
dir: /docs/themes/gohugoioTheme/src/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')
}
}