File modules/editor/codemirror/mode/mbox/index.html

Last commit: Sun Dec 17 01:14:09 2017 +0100	Jan Dankert	Integration eines weiteren Code-Editors: Codemirror. Demnächst müssen wir hier mal aufräumen und andere Editoren rauswerfen.
1 <!doctype html> 2 3 <title>CodeMirror: mbox mode</title> 4 <meta charset="utf-8"/> 5 <link rel=stylesheet href="../../doc/docs.css"> 6 7 <link rel="stylesheet" href="../../lib/codemirror.css"> 8 <script src="../../lib/codemirror.js"></script> 9 <script src="mbox.js"></script> 10 <style>.CodeMirror { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }</style> 11 <div id=nav> 12 <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a> 13 14 <ul> 15 <li><a href="../../index.html">Home</a> 16 <li><a href="../../doc/manual.html">Manual</a> 17 <li><a href="https://github.com/codemirror/codemirror">Code</a> 18 </ul> 19 <ul> 20 <li><a href="../index.html">Language modes</a> 21 <li><a class=active href="#">mbox</a> 22 </ul> 23 </div> 24 25 <article> 26 <h2>mbox mode</h2> 27 <form><textarea id="code" name="code"> 28 From timothygu99@gmail.com Sun Apr 17 01:40:43 2016 29 From: Timothy Gu &lt;timothygu99@gmail.com&gt; 30 Date: Sat, 16 Apr 2016 18:40:43 -0700 31 Subject: mbox mode 32 Message-ID: &lt;Z8d+bTT50U/az94FZnyPkDjZmW0=@gmail.com&gt; 33 34 mbox mode is working! 35 36 Timothy 37 </textarea></form> 38 <script> 39 var editor = CodeMirror.fromTextArea(document.getElementById("code"), {}); 40 </script> 41 42 <p><strong>MIME types defined:</strong> <code>application/mbox</code>.</p> 43 44 </article>
Download modules/editor/codemirror/mode/mbox/index.html
History Sun, 17 Dec 2017 01:14:09 +0100 Jan Dankert Integration eines weiteren Code-Editors: Codemirror. Demnächst müssen wir hier mal aufräumen und andere Editoren rauswerfen.