mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
Merge pull request #429 from x4e/develop
Case insensitive language highlighting matching
This commit is contained in:
commit
2c1d3a51af
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