????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.222.164.11 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/libjs-codemirror/examples/ |
Upload File : |
<!doctype html> <html> <head> <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.overlayParser(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>