aboutsummaryrefslogtreecommitdiff
path: root/imports/codemirror/mode/ntriples/index.html
diff options
context:
space:
mode:
authorEric Guzman2012-02-16 00:22:43 -0800
committerEric Guzman2012-02-16 00:22:43 -0800
commit82b1a273219f0ae3d119e156c7acccdbe478f441 (patch)
tree74c45e5e3afc6706b2f7a7918807f72c54cdcfc5 /imports/codemirror/mode/ntriples/index.html
parentaf20ca9b11133dd5cefb9275dbe8fb101c3380d0 (diff)
parent966f0adaf1d4b7f2dd5a6e31643df58bff713884 (diff)
downloadninja-82b1a273219f0ae3d119e156c7acccdbe478f441.tar.gz
Merge branch 'refs/heads/TreeComponents' into PresetsPanel
Diffstat (limited to 'imports/codemirror/mode/ntriples/index.html')
-rwxr-xr-ximports/codemirror/mode/ntriples/index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/imports/codemirror/mode/ntriples/index.html b/imports/codemirror/mode/ntriples/index.html
new file mode 100755
index 00000000..08d33bab
--- /dev/null
+++ b/imports/codemirror/mode/ntriples/index.html
@@ -0,0 +1,32 @@
1<!doctype html>
2<html>
3 <head>
4 <title>CodeMirror: NTriples mode</title>
5 <link rel="stylesheet" href="../../lib/codemirror.css">
6 <script src="../../lib/codemirror.js"></script>
7 <script src="ntriples.js"></script>
8 <link rel="stylesheet" href="../../doc/docs.css">
9 <style type="text/css">
10 .CodeMirror {
11 border: 1px solid #eee;
12 }
13 </style>
14 </head>
15 <body>
16 <h1>CodeMirror: NTriples mode</h1>
17<form>
18<textarea id="ntriples" name="ntriples">
19<http://Sub1> <http://pred1> <http://obj> .
20<http://Sub2> <http://pred2#an2> "literal 1" .
21<http://Sub3#an3> <http://pred3> _:bnode3 .
22_:bnode4 <http://pred4> "literal 2"@lang .
23_:bnode5 <http://pred5> "literal 3"^^<http://type> .
24</textarea>
25</form>
26
27 <script>
28 var editor = CodeMirror.fromTextArea(document.getElementById("ntriples"), {});
29 </script>
30 <p><strong>MIME types defined:</strong> <code>text/n-triples</code>.</p>
31 </body>
32</html>