Remove `langs` list from `post-render` as it does not actually

do anything useful (see https://github.com/writeas/writefreely/pull/128#issuecomment-506207107)
pull/128/head
Michael Demetriou 5 years ago
parent 8d9f60aaa9
commit 4feac6dcd2
  1. 4
      templates/include/post-render.tmpl

@ -6,8 +6,6 @@
var hlbaseUri = "/js/"; var hlbaseUri = "/js/";
var lb = document.querySelectorAll("code[class^='language-']"); var lb = document.querySelectorAll("code[class^='language-']");
// Set langs to the langs that are included by default (for now: 'common set' on CDN)
var langs = [];
// Custom aliasmap // Custom aliasmap
var aliasmap = { var aliasmap = {
@ -65,7 +63,7 @@
// Support the aliases specified above // Support the aliases specified above
if (aliasmap[lang]) lang = aliasmap[lang]; if (aliasmap[lang]) lang = aliasmap[lang];
lurl = hlbaseUri + "highlightjs/" + lang + ".min.js"; lurl = hlbaseUri + "highlightjs/" + lang + ".min.js";
if (!(langs.includes(lang) || jss.includes(lurl))) { if (!jss.includes(lurl)) {
jss.push(lurl); jss.push(lurl);
} }
} }

Loading…
Cancel
Save