File modules/editor/codemirror/mode/vb/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: VB.NET 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 <link href="http://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css"> 9 <script src="../../lib/codemirror.js"></script> 10 <script src="vb.js"></script> 11 <script type="text/javascript" src="../../addon/runmode/runmode.js"></script> 12 <style> 13 .CodeMirror {border: 1px solid #aaa; height:210px; height: auto;} 14 .CodeMirror-scroll { overflow-x: auto; overflow-y: hidden;} 15 .CodeMirror pre { font-family: Inconsolata; font-size: 14px} 16 </style> 17 <div id=nav> 18 <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a> 19 20 <ul> 21 <li><a href="../../index.html">Home</a> 22 <li><a href="../../doc/manual.html">Manual</a> 23 <li><a href="https://github.com/codemirror/codemirror">Code</a> 24 </ul> 25 <ul> 26 <li><a href="../index.html">Language modes</a> 27 <li><a class=active href="#">VB.NET</a> 28 </ul> 29 </div> 30 31 <article> 32 <h2>VB.NET mode</h2> 33 <div id="edit"> 34 <textarea name="code" id="code" > 35 Class rocket 36 Private quality as Double 37 Public Sub launch() as String 38 If quality > 0.8 39 launch = "Successful" 40 Else 41 launch = "Failed" 42 End If 43 End sub 44 End class 45 </textarea> 46 </div> 47 <p>MIME type defined: <code>text/x-vb</code>.</p> 48 <script>CodeMirror.fromTextArea(document.getElementById("code"))</script> 49 </article>
Download modules/editor/codemirror/mode/vb/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.