Files
clearlinux.github.io/modules/contrib/codesnippet/js/codesnippet.js
T
2023-01-20 10:37:00 -08:00

19 lines
380 B
JavaScript

/**
* @file
* Enables syntax highlighting via HighlightJS on the HTML code tag.
*/
(function (Drupal) {
'use strict';
Drupal.behaviors.codesnippet = {
attach: function (context, settings) {
hljs.initHighlightingOnLoad();
context.querySelectorAll('pre code').forEach(element => {
element.style.overflowX = 'auto';
});
}
};
})(Drupal);