mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
Case insensitive language highlighting matching
This automatically lowercases language names used in code blocks when finding highlighting scripts for them, since highlightJS defines all languages with lowercase names.
This commit is contained in:
parent
53ea85dc86
commit
795748457c
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
|||
var jss = [hlbaseUri + "highlight.min.js"];
|
||||
// Check what we need to load
|
||||
for (i=0; i < lb.length; i++) {
|
||||
lang = lb[i].className.replace('language-','');
|
||||
lang = lb[i].className.replace('language-','').toLowerCase();
|
||||
// Support the aliases specified above
|
||||
if (aliasmap[lang]) lang = aliasmap[lang];
|
||||
lurl = hlbaseUri + "highlightjs/" + lang + ".min.js";
|
||||
|
|
Loading…
Reference in a new issue