~ubuntu-branches/ubuntu/utopic/codemirror-js/utopic

« back to all changes in this revision

Viewing changes to mode/gfm/index.html

  • Committer: Package Import Robot
  • Author(s): David Paleino
  • Date: 2012-04-12 12:25:28 UTC
  • Revision ID: package-import@ubuntu.com-20120412122528-8xp5a8frj4h1d3ee
Tags: upstream-2.23
ImportĀ upstreamĀ versionĀ 2.23

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype html>
 
2
<html>
 
3
  <head>
 
4
    <title>CodeMirror: GFM mode</title>
 
5
    <link rel="stylesheet" href="../../lib/codemirror.css">
 
6
    <script src="../../lib/codemirror.js"></script>
 
7
    <script src="../xml/xml.js"></script>
 
8
    <script src="../markdown/markdown.js"></script>
 
9
    <script src="gfm.js"></script>
 
10
    <script src="../javascript/javascript.js"></script>
 
11
    <link rel="stylesheet" href="../markdown/markdown.css">
 
12
    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
 
13
    <link rel="stylesheet" href="../../doc/docs.css">
 
14
  </head>
 
15
  <body>
 
16
    <h1>CodeMirror: GFM mode</h1>
 
17
 
 
18
<!-- source: http://daringfireball.net/projects/markdown/basics.text -->
 
19
<form><textarea id="code" name="code">
 
20
Github Flavored Markdown
 
21
========================
 
22
 
 
23
Everything from markdown plus GFM features:
 
24
 
 
25
## Fenced code blocks
 
26
 
 
27
```javascript
 
28
for (var i = 0; i &lt; items.length; i++) {
 
29
    console.log(items[i], i); // log them
 
30
}
 
31
```
 
32
 
 
33
See http://github.github.com/github-flavored-markdown/
 
34
 
 
35
</textarea></form>
 
36
 
 
37
    <script>
 
38
      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
 
39
        mode: 'gfm',
 
40
        lineNumbers: true,
 
41
        matchBrackets: true,
 
42
        theme: "default"
 
43
      });
 
44
    </script>
 
45
 
 
46
  </body>
 
47
</html>