Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
776 lars 1
<!doctype html>
2
<title>CodeMirror: Properties files mode</title>
3
<meta charset="utf-8" />
4
<link rel=stylesheet href="../../doc/docs.css">
5
<link rel="stylesheet" href="../../lib/codemirror.css">
6
<script src="../../lib/codemirror.js"></script>
7
<script src="properties.js"></script>
8
<style>
9
    .CodeMirror {
10
        border-top: 1px solid #ddd;
11
        border-bottom: 1px solid #ddd;
12
    }
13
</style>
14
<div id=nav>
15
    <a href="http://codemirror.net">
16
        <h1>CodeMirror</h1>
17
        <img id=logo src="../../doc/logo.png">
18
    </a>
19
    <ul>
20
        <li>
21
            <a href="../../index.html">Home</a>
22
            <li>
23
                <a href="../../doc/manual.html">Manual</a>
24
                <li>
25
                    <a href="https://github.com/codemirror/codemirror">Code</a>
26
    </ul>
27
    <ul>
28
        <li>
29
            <a href="../index.html">Language modes</a>
30
            <li>
31
                <a class=active href="#">Properties files</a>
32
    </ul>
33
</div>
34
<article>
35
    <h2>Properties files mode</h2>
36
    <form>
37
        <textarea id="code" name="code"> # This is a properties file a.key = A value another.key = http://example.com ! Exclamation mark as comment but.not=Within ! A value # indeed # Spaces at the beginning of a line spaces.before.key=value backslash=Used for multi\ line entries,\ that's
38
            convenient. # Unicode sequences unicode.key=This is \u0020 Unicode no.multiline=here # Colons colons : can be used too # Spaces spaces\ in\ keys=Not very common... </textarea>
39
    </form>
40
    <script>
41
        var editor = CodeMirror.fromTextArea(document.getElementById("code"),
42
        {});
43
    </script>
44
    <p>
45
        <strong>MIME types defined:</strong> <code>text/x-properties</code>, <code>text/x-ini</code>.</p>
46
</article>