Don't highlight very short code blocks
This commit is contained in:
parent
1aebc2c100
commit
b74f0cc0dd
1 changed files with 13 additions and 1 deletions
|
@ -12,7 +12,19 @@ class HighlightedCode extends ElemJS {
|
||||||
this.element.appendChild(child)
|
this.element.appendChild(child)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
lazyLoad("./static/hljs.js").then(hljs => hljs.highlightBlock(this.element))
|
if (this.element.textContent.length > 80) {
|
||||||
|
/*
|
||||||
|
no need to highlight very short code blocks:
|
||||||
|
- content inside might not be code, some users still use code blocks
|
||||||
|
for plaintext quotes
|
||||||
|
- language detection will almost certainly be incorrect
|
||||||
|
- even if it's code and the language is detected, the user will
|
||||||
|
be able to mentally format small amounts of code themselves
|
||||||
|
|
||||||
|
feel free to change the threshold number
|
||||||
|
*/
|
||||||
|
lazyLoad("./static/hljs.js").then(hljs => hljs.highlightBlock(this.element))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue