123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <!doctype html>
- <html>
- <head>
- <title>CodeMirror</title>
- <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans:bold"/>
- <link rel="stylesheet" type="text/css" href="css/docs.css"/>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <link rel="alternate" href="http://twitter.com/statuses/user_timeline/242283288.rss" type="application/rss+xml"/>
- </head>
- <body>
- <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
- <pre class="grey">
- <img src="css/baboon.png" class="logo" alt="logo"/>/* In-browser code editing
- made bearable */
- </pre>
- <div class="clear"><div class="left blk">
- <p style="margin-top: 0">CodeMirror is a JavaScript library that can
- be used to create a relatively pleasant editor interface for
- code-like content ― computer programs, HTML markup, and
- similar. If a mode has been written for the language you are
- editing, the code will be coloured, and the editor will optionally
- help you with indentation.</p>
- <p>This is the project page for CodeMirror 2, the currently more
- actively developed, and recommended
- version. <a href="1/index.html">CodeMirror 1</a> is still available
- from here.</p>
- <div class="clear"><div class="left1 blk">
- <h2 style="margin-top: 0">Supported modes:</h2>
- <ul>
- <li><a href="mode/javascript/index.html">JavaScript</a></li>
- <li><a href="mode/xml/index.html">XML/HTML</a></li>
- <li><a href="mode/css/index.html">CSS</a></li>
- <li><a href="mode/htmlmixed/index.html">HTML mixed-mode</a></li>
- <li><a href="mode/python/index.html">Python</a></li>
- <li><a href="mode/php/index.html">PHP</a></li>
- <li><a href="mode/diff/index.html">diff</a></li>
- <li><a href="mode/clike/index.html">C, Java, C#, and similar</a></li>
- <li><a href="mode/stex/index.html">sTeX, LaTeX</a></li>
- <li><a href="mode/haskell/index.html">Haskell</a></li>
- <li><a href="mode/smalltalk/index.html">Smalltalk</a></li>
- <li><a href="mode/plsql/index.html">PL/SQL</a></li>
- <li><a href="mode/lua/index.html">Lua</a></li>
- <li><a href="mode/scheme/index.html">Scheme</a></li>
- <li><a href="mode/rst/index.html">reStructuredText</a></li>
- <li><a href="mode/yaml/index.html">YAML</a></li>
- <li><a href="mode/sparql/index.html">SPARQL</a></li>
- </ul>
- </div><div class="left2 blk">
- <h2 style="margin-top: 0">Usage demos:</h2>
- <ul>
- <li><a href="demo/complete.html">Autocompletion</a></li>
- <li><a href="demo/mustache.html">Mode overlays</a></li>
- <li><a href="demo/search.html">Search/replace</a></li>
- <li><a href="demo/preview.html">HTML editor with preview</a></li>
- <li><a href="demo/resize.html">Auto-resizing editor</a></li>
- <li><a href="demo/marker.html">Setting breakpoints</a></li>
- <li><a href="demo/activeline.html">Highlighting the current line</a></li>
- <li><a href="demo/theme.html">Theming</a></li>
- <li><a href="demo/runmode.html">Stand-alone highlighting</a></li>
- <li><a href="demo/fullscreen.html">Full-screen editing</a></li>
- <li><a href="demo/changemode.html">Mode auto-changing</a></li>
- </ul>
- </div></div>
- <h2 id="code">Getting the code</h2>
- <p>All of CodeMirror is released under a <a
- href="LICENSE">MIT-style</a> license. To get it, you can download
- the <a href="http://codemirror.net/codemirror.zip">latest
- release</a> or the current <a
- href="http://codemirror.net/codemirror2-latest.zip">development
- snapshot</a> as zip files. To create a custom minified script file,
- you can use the <a href="compress.html">compression API</a>.</p>
- <p>We use <a href="http://git-scm.com/">git</a> for version control.
- The main repository can be fetched in this way:</p>
- <pre class="code">git clone http://marijnhaverbeke.nl/git/codemirror2</pre>
- <p>CodeMirror can also be found on GitHub at <a
- href="http://github.com/marijnh/CodeMirror2">marijnh/CodeMirror2</a>.
- If you plan to hack on the code and contribute patches, the best way
- to do it is to create a GitHub fork, and send pull requests.</p>
- <h2 id="documention">Documentation</h2>
- <p>The <a href="manual.html">manual</a> is your first stop for
- learning how to use this library. It starts with a quick explanation
- of how to use the editor, and then describes all of the (many)
- options and methods that CodeMirror exposes.</p>
- <p>For those who want to learn more about the code, there is
- an <a href="internals.html">overview of the internals</a> available.
- The <a href="http://github.com/marijnh/CodeMirror2">source code</a>
- itself is, for the most part, also well commented.</p>
- <h2 id="support">Support and bug reports</h2>
- <p>There is
- a <a href="http://groups.google.com/group/codemirror">Google
- group</a> (a sort of mailing list/newsgroup thing) for discussion
- and news related to CodeMirror. Reporting bugs is best done
- on <a href="http://github.com/marijnh/CodeMirror2/issues">github</a>.
- You can also e-mail me
- directly: <a href="mailto:marijnh@gmail.com">Marijn
- Haverbeke</a>.</p>
- <h2 id="supported">Supported browsers</h2>
- <p>The following browsers are able to run CodeMirror:</p>
- <ul>
- <li>Firefox 2 or higher</li>
- <li>Chrome, any version</li>
- <li>Safari 3 or higher</li>
- <li>Internet Explorer 6 or higher</li>
- <li>Opera 9 or higher (with some key-handling problems on OS X)</li>
- </ul>
- <p>I am not actively testing against every new browser release, and
- vendors have a habit of introducing bugs all the time, so I am
- relying on the community to tell me when something breaks.
- See <a href="#support">here</a> for information on how to contact
- me.</p>
- </div>
- <div class="right blk">
- <a href="http://codemirror.net/codemirror.zip" class="download">Download the latest release</a>
- <h2>Make a donation</h2>
- <ul>
- <li><span onclick="document.getElementById('paypal').submit();" class="quasilink">Paypal</span></li>
- <li><span onclick="document.getElementById('bankinfo').style.display = 'block';" class="quasilink">Bank</span></li>
- </ul>
- <p id="bankinfo" style="display: none;">
- Bank: <i>Rabobank</i><br/>
- Country: <i>Netherlands</i><br/>
- SWIFT: <i>RABONL2U</i><br/>
- Account: <i>147850770</i><br/>
- Name: <i>Marijn Haverbeke</i><br/>
- IBAN: <i>NL26 RABO 0147 8507 70</i>
- </p>
- <h2>Releases:</h2>
- <p class="rel">25-07-2011: <a href="http://codemirror.net/codemirror-2.12.zip">Version 2.12</a>:</p>
- <ul class="rel-note">
- <li>Add a <a href="mode/sparql/index.html">SPARQL</a> mode.</li>
- <li>Fix bug with cursor jumping around in an unfocused editor in IE.</li>
- <li>Allow key and mouse events to bubble out of the editor. Ignore widget clicks.</li>
- <li>Solve cursor flakiness after undo/redo.</li>
- <li>Fix block-reindent ignoring the last few lines.</li>
- <li>Fix parsing of multi-line attrs in XML mode.</li>
- <li>Use <code>innerHTML</code> for HTML-escaping.</li>
- <li>Some fixes to indentation in C-like mode.</li>
- <li>Shrink horiz scrollbars when long lines removed.</li>
- <li>Fix width feedback loop bug that caused the width of an inner DIV to shrink.</li>
- </ul>
- <p class="rel">04-07-2011: <a href="http://codemirror.net/codemirror-2.11.zip">Version 2.11</a>:</p>
- <ul class="rel-note">
- <li>Add a <a href="mode/scheme/index.html">Scheme mode</a>.</li>
- <li>Add a <code>replace</code> method to search cursors, for cursor-preserving replacements.</li>
- <li>Make the <a href="mode/clike/index.html">C-like mode</a> mode more customizeable.</li>
- <li>Update XML mode to spot mismatched tags.</li>
- <li>Add <code>getStateAfter</code> API and <code>compareState</code> mode API methods for finer-grained mode magic.</li>
- <li>Add a <code>getScrollerElement</code> API method to manipulate the scrolling DIV.</li>
- <li>Fix drag-and-drop for Firefox.</li>
- <li>Add a C# configuration for the <a href="mode/clike/index.html">C-like mode</a>.</li>
- <li>Add <a href="demo/fullscreen.html">full-screen editing</a> and <a href="demo/changemode.html">mode-changing</a> demos.</li>
- </ul>
- <p class="rel">07-06-2011: <a href="http://codemirror.net/codemirror-2.1.zip">Version 2.1</a>:</p>
- <p class="rel-note">Add
- a <a href="manual.html#option_theme">theme</a> system
- (<a href="demo/theme.html">demo</a>). Note that this is not
- backwards-compatible—you'll have to update your styles and
- modes!</p>
- <p class="rel">07-06-2011: <a href="http://codemirror.net/codemirror-2.02.zip">Version 2.02</a>:</p>
- <ul class="rel-note">
- <li>Add a <a href="mode/lua/index.html">Lua mode</a>.</li>
- <li>Fix reverse-searching for a regexp.</li>
- <li>Empty lines can no longer break highlighting.</li>
- <li>Rework scrolling model (the outer wrapper no longer does the scrolling).</li>
- <li>Solve horizontal jittering on long lines.</li>
- <li>Add <a href="demo/runmode.html">runmode.js</a>.</li>
- <li>Immediately re-highlight text when typing.</li>
- <li>Fix problem with 'sticking' horizontal scrollbar.</li>
- </ul>
- <p class="rel">26-05-2011: <a href="http://codemirror.net/codemirror-2.01.zip">Version 2.01</a>:</p>
- <ul class="rel-note">
- <li>Add a <a href="mode/smalltalk/index.html">Smalltalk mode</a>.</li>
- <li>Add a <a href="mode/rst/index.html">reStructuredText mode</a>.</li>
- <li>Add a <a href="mode/python/index.html">Python mode</a>.</li>
- <li>Add a <a href="mode/plsql/index.html">PL/SQL mode</a>.</li>
- <li><code>coordsChar</code> now works</li>
- <li>Fix a problem where <code>onCursorActivity</code> interfered with <code>onChange</code>.</li>
- <li>Fix a number of scrolling and mouse-click-position glitches.</li>
- <li>Pass information about the changed lines to <code>onChange</code>.</li>
- <li>Support cmd-up/down on OS X.</li>
- <li>Add triple-click line selection.</li>
- <li>Don't handle shift when changing the selection through the API.</li>
- <li>Support <code>"nocursor"</code> mode for <code>readOnly</code> option.</li>
- <li>Add an <code>onHighlightComplete</code> option.</li>
- <li>Fix the context menu for Firefox.</li>
- </ul>
- <p><a href="oldrelease.html">Older releases...</a></p>
- </div></div>
- <div style="height: 2em"> </div>
- <form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="paypal">
- <input type="hidden" name="cmd" value="_s-xclick"/>
- <input type="hidden" name="hosted_button_id" value="3FVHS5FGUY7CC"/>
- </form>
- </body>
- </html>
|