function selectExampleLanguage()

in amoro-docs/themes/amoro-theme/static/js/iceberg-theme.js [57:63]


function selectExampleLanguage(group, type) {
    groups[group].forEach(lang => hideCodeBlocks(group, lang));
	inputs = Array.from(document.getElementsByTagName('input')).filter(e => e.id == type);
    inputs.forEach(input => input.checked = true);
    console.log(inputs);
    showCodeBlocks(group, type);
}