Sha256: b5b4880f6b42bb329f07e0fdf484b934685e0ae171f5dc92d25d97b3d63a7638

Contents?: true

Size: 1.74 KB

Versions: 46

Compression:

Stored size: 1.74 KB

Contents

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CodeMirror: Overlay Parser Demo</title>
    <link rel="stylesheet" href="../lib/codemirror.css">
    <script src="../lib/codemirror.js"></script>
    <script src="../lib/util/overlay.js"></script>
    <script src="../mode/xml/xml.js"></script>
    <link rel="stylesheet" href="../doc/docs.css">

    <style type="text/css">
      .CodeMirror {border: 1px solid black;}
      .cm-mustache {color: #0ca;}
    </style>
  </head>
  <body>
    <h1>CodeMirror: Overlay Parser Demo</h1>

    <form><textarea id="code" name="code">
<html>
  <body>
    <h1>{{title}}</h1>
    <p>These are links to {{things}}:</p>
    <ul>{{#links}}
      <li><a href="{{url}}">{{text}}</a></li>
    {{/links}}</ul>
  </body>
</html>
</textarea></form>

    <script>
CodeMirror.defineMode("mustache", function(config, parserConfig) {
  var mustacheOverlay = {
    token: function(stream, state) {
      var ch;
      if (stream.match("{{")) {
        while ((ch = stream.next()) != null)
          if (ch == "}" && stream.next() == "}") break;
        return "mustache";
      }
      while (stream.next() != null && !stream.match("{{", false)) {}
      return null;
    }
  };
  return CodeMirror.overlayMode(CodeMirror.getMode(config, parserConfig.backdrop || "text/html"), mustacheOverlay);
});
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {mode: "mustache"});
</script>

    <p>Demonstration of a mode that parses HTML, highlighting
    the <a href="http://mustache.github.com/">Mustache</a> templating
    directives inside of it by using the code
    in <a href="../lib/util/overlay.js"><code>overlay.js</code></a>. View
    source to see the 15 lines of code needed to accomplish this.</p>

  </body>
</html>

Version data entries

46 entries across 23 versions & 1 rubygems

Version Path
rearview-1.2.3-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.2.3-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.2.2.rc.2-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.2.2.rc.2-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.2.2.rc.1-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.2.2.rc.1-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.2.1-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.2.1-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.2.0-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.2.0-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.1.2-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.1.2-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.1.1-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.1.1-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.1.0-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.1.0-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.0.3.rc.4-jruby public/rearview/vendor/codemirror/demo/mustache.html
rearview-1.0.3.rc.4-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.0.3.rc.3-jruby public/rearview-src/vendor/codemirror/demo/mustache.html
rearview-1.0.3.rc.3-jruby public/rearview/vendor/codemirror/demo/mustache.html