mirror of
https://github.com/GenZmeY/casper-i18n.git
synced 2025-03-13 03:53:42 +00:00
11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
(function () {
|
|
const content = document.querySelector('.gh-content');
|
|
if (!content) return;
|
|
|
|
content.querySelectorAll('ul li, ol li').forEach(function (item) {
|
|
if (item.querySelector('ul, ol')) {
|
|
item.classList.add('kg-nested-list-item');
|
|
}
|
|
});
|
|
})();
|