source: branches/2.2/plugins/LocalFilesEditor/codemirror/mode/xml/index.html @ 10310

Last change on this file since 10310 was 10310, checked in by patdenice, 13 years ago

merge r10307 from trunk to branch 2.2
feature:2262
Replace editarea by Codemirror:
http://codemirror.net

File size: 1.6 KB
Line 
1<!doctype html>
2<html>
3  <head>
4    <title>CodeMirror 2: XML mode</title>
5    <link rel="stylesheet" href="../../lib/codemirror.css">
6    <script src="../../lib/codemirror.js"></script>
7    <script src="xml.js"></script>
8    <link rel="stylesheet" href="xml.css">
9    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
10    <link rel="stylesheet" href="../../css/docs.css">
11  </head>
12  <body>
13    <h1>CodeMirror 2: XML mode</h1>
14    <form><textarea id="code" name="code">
15&lt;html style="color: green"&gt;
16  &lt;!-- this is a comment --&gt;
17  &lt;head&gt;
18    &lt;title&gt;HTML Example&lt;/title&gt;
19  &lt;/head&gt;
20  &lt;body&gt;
21    The indentation tries to be &lt;em&gt;somewhat &amp;quot;do what
22    I mean&amp;quot;&lt;/em&gt;... but might not match your style.
23  &lt;/body&gt;
24&lt;/html&gt;
25</textarea></form>
26    <script>
27      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {mode: {name: "xml", htmlMode: true}});
28    </script>
29    <p>The XML mode supports two configuration parameters:</p>
30    <dl>
31      <dt><code>htmlMode (boolean)</code></dt>
32      <dd>This switches the mode to parse HTML instead of XML. This
33      means attributes do not have to be quoted, and some elements
34      (such as <code>br</code>) do not require a closing tag.</dd>
35      <dt><code>alignCDATA (boolean)</code></dt>
36      <dd>Setting this to true will force the opening tag of CDATA
37      blocks to not be indented.</dd>
38    </dl>
39
40    <p><strong>MIME types defined:</strong> <code>application/xml</code>, <code>text/html</code>.</p>
41  </body>
42</html>
Note: See TracBrowser for help on using the repository browser.