mirror of
https://github.com/thomiceli/opengist.git
synced 2025-05-14 08:12:09 +02:00
Detect .c and .h files (#119)
This commit is contained in:
parent
2b9eb8e127
commit
bae18ecb0a
@ -21,8 +21,7 @@ document.querySelectorAll('.markdown').forEach((e: HTMLElement) => {
|
|||||||
|
|
||||||
document.querySelectorAll<HTMLElement>('.table-code').forEach((el) => {
|
document.querySelectorAll<HTMLElement>('.table-code').forEach((el) => {
|
||||||
const ext = el.dataset.filename?.split('.').pop() || '';
|
const ext = el.dataset.filename?.split('.').pop() || '';
|
||||||
|
if (hljs.getLanguage(ext) && ext !== 'txt') {
|
||||||
if (hljs.autoDetection(ext) && ext !== 'txt') {
|
|
||||||
el.querySelectorAll<HTMLElement>('td.line-code').forEach((ell) => {
|
el.querySelectorAll<HTMLElement>('td.line-code').forEach((ell) => {
|
||||||
ell.classList.add('language-' + ext);
|
ell.classList.add('language-' + ext);
|
||||||
hljs.highlightElement(ell);
|
hljs.highlightElement(ell);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user