blob: bc84c9160e877213bce177312c328d16851a2bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/**
* Check if the current block has a defined language.
* @param classList - A list of class.
* @returns {boolean} - True if a class starts with "language-".
*/
const isLanguageBlock = (classList: DOMTokenList) => {
const classes = Array.from(classList);
return classes.some((className) => /language-.*/.test(className));
};
/**
* Add automatically some classes and attributes for PrismJs.
*
* These classes and attributes are needed by Prism or to customize comments.
*/
export const addPrismClasses = () => {
const preTags = document.getElementsByTagName('pre');
Array.from(preTags).forEach((preTag) => {
if (
isLanguageBlock(preTag.classList) &&
!preTag.classList.contains('command-line') &&
!preTag.classList.contains('language-diff')
) {
preTag.classList.add('line-numbers', 'match-braces');
}
if (
preTag.classList.contains('command-line') &&
preTag.classList.contains('filter-output')
) {
preTag.setAttribute('data-filter-output', '#output#');
}
});
};
|