All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.colorize.js Maven / Gradle / Ivy

There is a newer version: 33
Show newest version
CodeMirror.colorize = (function() {

  var isBlock = /^(p|li|div|h\\d|pre|blockquote|td)$/;

  function textContent(node, out) {
    if (node.nodeType == 3) return out.push(node.nodeValue);
    for (var ch = node.firstChild; ch; ch = ch.nextSibling) {
      textContent(ch, out);
      if (isBlock.test(node.nodeType)) out.push("\n");
    }
  }

  return function() {
    var collection = document.body.getElementsByTagName("pre");

    for (var i = 0; i < collection.length; ++i) {
      var theme = " cm-s-default";
      var node = collection[i];
      var mode = node.getAttribute("data-lang");
      if (!mode) continue;
      if (mode === "cypher") {
        theme = " cm-s-neo";
      } else if (mode === "cypher-noexec") {
        mode = "cypher";
        theme = " cm-s-neo";
      } else if (mode === "java") {
        mode = "text/x-java";
      } else if (mode === "sql") {
        mode = "text/x-sql";
      } else if (mode  === "properties") {
        mode = "text/x-properties";
      } else if (mode === "json") {
        mode = "application/json";
      }

      var text = [];
      textContent(node, text);
      node.innerHTML = "";
      CodeMirror.runMode(text.join(""), mode, node);

      node.className += theme;
    }
  };
})();




© 2015 - 2024 Weber Informatics LLC | Privacy Policy