diff options
author | Jose Antonio Marquez | 2012-01-27 12:05:17 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-01-27 12:05:17 -0800 |
commit | 3a754133dbc138390503341fd2e9beba3e43aa4b (patch) | |
tree | cdeae7d7dd9a30d7b4fab5afb7efad68d4ec7508 /js/codemirror/mode/yaml/index.html | |
parent | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (diff) | |
download | ninja-3a754133dbc138390503341fd2e9beba3e43aa4b.tar.gz |
Merged old FileIO
Diffstat (limited to 'js/codemirror/mode/yaml/index.html')
-rw-r--r-- | js/codemirror/mode/yaml/index.html | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/js/codemirror/mode/yaml/index.html b/js/codemirror/mode/yaml/index.html deleted file mode 100644 index e8d04d18..00000000 --- a/js/codemirror/mode/yaml/index.html +++ /dev/null | |||
@@ -1,68 +0,0 @@ | |||
1 | <!doctype html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <title>CodeMirror 2: YAML mode</title> | ||
5 | <link rel="stylesheet" href="../../lib/codemirror.css"> | ||
6 | <script src="../../lib/codemirror.js"></script> | ||
7 | <script src="yaml.js"></script> | ||
8 | <link rel="stylesheet" href="../../theme/default.css"> | ||
9 | <style>.CodeMirror { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }</style> | ||
10 | <link rel="stylesheet" href="../../css/docs.css"> | ||
11 | </head> | ||
12 | <body> | ||
13 | <h1>CodeMirror 2: YAML mode</h1> | ||
14 | <form><textarea id="code" name="code"> | ||
15 | --- # Favorite movies | ||
16 | - Casablanca | ||
17 | - North by Northwest | ||
18 | - The Man Who Wasn't There | ||
19 | --- # Shopping list | ||
20 | [milk, pumpkin pie, eggs, juice] | ||
21 | --- # Indented Blocks, common in YAML data files, use indentation and new lines to separate the key: value pairs | ||
22 | name: John Smith | ||
23 | age: 33 | ||
24 | --- # Inline Blocks, common in YAML data streams, use commas to separate the key: value pairs between braces | ||
25 | {name: John Smith, age: 33} | ||
26 | --- | ||
27 | receipt: Oz-Ware Purchase Invoice | ||
28 | date: 2007-08-06 | ||
29 | customer: | ||
30 | given: Dorothy | ||
31 | family: Gale | ||
32 | |||
33 | items: | ||
34 | - part_no: A4786 | ||
35 | descrip: Water Bucket (Filled) | ||
36 | price: 1.47 | ||
37 | quantity: 4 | ||
38 | |||
39 | - part_no: E1628 | ||
40 | descrip: High Heeled "Ruby" Slippers | ||
41 | size: 8 | ||
42 | price: 100.27 | ||
43 | quantity: 1 | ||
44 | |||
45 | bill-to: &id001 | ||
46 | street: | | ||
47 | 123 Tornado Alley | ||
48 | Suite 16 | ||
49 | city: East Centerville | ||
50 | state: KS | ||
51 | |||
52 | ship-to: *id001 | ||
53 | |||
54 | specialDelivery: > | ||
55 | Follow the Yellow Brick | ||
56 | Road to the Emerald City. | ||
57 | Pay no attention to the | ||
58 | man behind the curtain. | ||
59 | ... | ||
60 | </textarea></form> | ||
61 | <script> | ||
62 | var editor = CodeMirror.fromTextArea(document.getElementById("code"), {}); | ||
63 | </script> | ||
64 | |||
65 | <p><strong>MIME types defined:</strong> <code>text/x-yaml</code>.</p> | ||
66 | |||
67 | </body> | ||
68 | </html> | ||