runmode.js 951 B

123456789101112131415161718192021222324252627
  1. CodeMirror.runMode = function(string, modespec, callback) {
  2. var mode = CodeMirror.getMode({indentUnit: 2}, modespec);
  3. var isNode = callback.nodeType == 1;
  4. if (isNode) {
  5. var node = callback, accum = [];
  6. callback = function(string, style) {
  7. if (string == "\n")
  8. accum.push("<br>");
  9. else if (style)
  10. accum.push("<span class=\"cm-" + CodeMirror.htmlEscape(style) + "\">" + CodeMirror.htmlEscape(string) + "</span>");
  11. else
  12. accum.push(CodeMirror.htmlEscape(string));
  13. }
  14. }
  15. var lines = CodeMirror.splitLines(string), state = CodeMirror.startState(mode);
  16. for (var i = 0, e = lines.length; i < e; ++i) {
  17. if (i) callback("\n");
  18. var stream = new CodeMirror.StringStream(lines[i]);
  19. while (!stream.eol()) {
  20. var style = mode.token(stream, state);
  21. callback(stream.current(), style);
  22. stream.start = stream.pos;
  23. }
  24. }
  25. if (isNode)
  26. node.innerHTML = accum.join("");
  27. };