Sha256: 96d1a06a6b7c7ae1dfa4df0d774d7d37d584fd42515ff0be40409303ee6ecc1b

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

<!doctype html>
<html>
  <head>
    <title>CodeMirror 2: NTriples mode</title>
    <link rel="stylesheet" href="../../lib/codemirror.css">
    <script src="../../lib/codemirror.js"></script>
    <script src="ntriples.js"></script>
    <link rel="stylesheet" href="../../theme/default.css">
    <link rel="stylesheet" href="../../css/docs.css">
    <style type="text/css">
      .CodeMirror {
        border: 1px solid #eee;
      }
    </style>   
  </head>
  <body>
    <h1>CodeMirror 2: NTriples mode</h1>
<form>
<textarea id="ntriples" name="ntriples">    
<http://Sub1>     <http://pred1>     <http://obj> .
<http://Sub2>     <http://pred2#an2> "literal 1" .
<http://Sub3#an3> <http://pred3>     _:bnode3 .
_:bnode4          <http://pred4>     "literal 2"@lang .
_:bnode5          <http://pred5>     "literal 3"^^<http://type> .
</textarea>
</form>

    <script>
      var editor = CodeMirror.fromTextArea(document.getElementById("ntriples"), {});
    </script>
    <p><strong>MIME types defined:</strong> <code>text/n-triples</code>.</p>
  </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
liquid_cms-0.3.2.0 lib/generators/liquid_cms/templates/public/cms/codemirror/mode/ntriples/index.html
liquid_cms-0.2.2.0 generators/liquid_cms/templates/public/cms/codemirror/mode/ntriples/index.html