Sha256: d7f55d625829bc86805d409edf0b99123e9ab1bc1e75f8cc4a7ac1ecfa9b095b

Contents?: true

Size: 1.29 KB

Versions: 181

Compression:

Stored size: 1.29 KB

Contents

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CodeMirror: GFM mode</title>
    <link rel="stylesheet" href="../../lib/codemirror.css">
    <script src="../../lib/codemirror.js"></script>
    <script src="../xml/xml.js"></script>
    <script src="../markdown/markdown.js"></script>
    <script src="gfm.js"></script>
    <script src="../javascript/javascript.js"></script>
    <link rel="stylesheet" href="../markdown/markdown.css">
    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
    <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
    <h1>CodeMirror: GFM mode</h1>

<!-- source: http://daringfireball.net/projects/markdown/basics.text -->
<form><textarea id="code" name="code">
Github Flavored Markdown
========================

Everything from markdown plus GFM features:

## Fenced code blocks

```javascript
for (var i = 0; i &lt; items.length; i++) {
    console.log(items[i], i); // log them
}
```

See http://github.github.com/github-flavored-markdown/

</textarea></form>

    <script>
      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
        mode: 'gfm',
        lineNumbers: true,
        matchBrackets: true,
        theme: "default"
      });
    </script>

  </body>
</html>

Version data entries

181 entries across 158 versions & 3 rubygems

Version Path
marty-1.0.28 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.27 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.26 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.25 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.24 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.23 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.22 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.20 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.19 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.18 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.17 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.15 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.14 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.13 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.12 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.11 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.10 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.9 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.8 app/components/marty/script_form/client/mode/gfm/index.html
marty-1.0.7 app/components/marty/script_form/client/mode/gfm/index.html