Skip to content

Commit e56c553

Browse files
committed
Change page titles to say simply 'CodeMirror' instead of 'CodeMirror 2'
Since v2 is the canonical CodeMirror at this point
1 parent 4b82df9 commit e56c553

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+105
-105
lines changed

demo/activeline.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Active Line Demo</title>
4+
<title>CodeMirror: Active Line Demo</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<script src="../mode/xml/xml.js"></script>
@@ -13,7 +13,7 @@
1313
</style>
1414
</head>
1515
<body>
16-
<h1>CodeMirror 2: Active Line Demo</h1>
16+
<h1>CodeMirror: Active Line Demo</h1>
1717

1818
<form><textarea id="code" name="code">
1919
<?xml version="1.0" encoding="UTF-8"?>

demo/changemode.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Mode-Changing Demo</title>
4+
<title>CodeMirror: Mode-Changing Demo</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<script src="../mode/javascript/javascript.js"></script>
@@ -13,7 +13,7 @@
1313
</style>
1414
</head>
1515
<body>
16-
<h1>CodeMirror 2: Mode-Changing demo</h1>
16+
<h1>CodeMirror: Mode-Changing demo</h1>
1717

1818
<form><textarea id="code" name="code">
1919
;; If there is Scheme code in here, the editor will be in Scheme mode.

demo/complete.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Autocomplete Demo</title>
4+
<title>CodeMirror: Autocomplete Demo</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<script src="../lib/util/simple-hint.js"></script>
@@ -12,7 +12,7 @@
1212
<style type="text/css">.CodeMirror {border: 1px solid #eee;}</style>
1313
</head>
1414
<body>
15-
<h1>CodeMirror 2: Autocomplete demo</h1>
15+
<h1>CodeMirror: Autocomplete demo</h1>
1616

1717
<form><textarea id="code" name="code">
1818
function getCompletions(token, context) {

demo/emacs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Emacs bindings demo</title>
4+
<title>CodeMirror: Emacs bindings demo</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<script src="../mode/clike/clike.js"></script>
@@ -13,7 +13,7 @@
1313
</style>
1414
</head>
1515
<body>
16-
<h1>CodeMirror 2: Emacs bindings demo</h1>
16+
<h1>CodeMirror: Emacs bindings demo</h1>
1717

1818
<form><textarea id="code" name="code">
1919
#include "syscalls.h"

demo/folding.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Code Folding Demo</title>
4+
<title>CodeMirror: Code Folding Demo</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<script src="../lib/util/foldcode.js"></script>
@@ -14,7 +14,7 @@
1414
</style>
1515
</head>
1616
<body>
17-
<h1>CodeMirror 2: Code Folding Demo</h1>
17+
<h1>CodeMirror: Code Folding Demo</h1>
1818

1919
<form><div style="max-width: 50em"><textarea id="code" name="code"></textarea></div></form>
2020

demo/formatting.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Formatting Demo</title>
4+
<title>CodeMirror: Formatting Demo</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<script src="../lib/util/formatting.js"></script>
@@ -21,7 +21,7 @@
2121
</style>
2222
</head>
2323
<body>
24-
<h1>CodeMirror 2: Formatting demo</h1>
24+
<h1>CodeMirror: Formatting demo</h1>
2525

2626
<form><textarea id="code" name="code"><script> function (s,e){ for(var i=0; i < 1; i++) test("test();a=1");} </script>
2727
<script>

demo/fullscreen.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Full Screen Editing</title>
4+
<title>CodeMirror: Full Screen Editing</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<link rel="stylesheet" href="../theme/night.css">
@@ -27,7 +27,7 @@
2727
</style>
2828
</head>
2929
<body>
30-
<h1>CodeMirror 2: Full Screen Editing</h1>
30+
<h1>CodeMirror: Full Screen Editing</h1>
3131

3232
<form><textarea id="code" name="code" rows="5">
3333
<dt id="option_indentWithTabs"><code>indentWithTabs (boolean)</code></dt>

demo/marker.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Breakpoint Demo</title>
4+
<title>CodeMirror: Breakpoint Demo</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<script src="../mode/javascript/javascript.js"></script>
@@ -18,7 +18,7 @@
1818
</style>
1919
</head>
2020
<body>
21-
<h1>CodeMirror 2: Breakpoint demo</h1>
21+
<h1>CodeMirror: Breakpoint demo</h1>
2222

2323
<form><textarea id="code" name="code">
2424
CodeMirror.fromTextArea(document.getElementById("code"), {

demo/mustache.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: Overlay Parser Demo</title>
4+
<title>CodeMirror: Overlay Parser Demo</title>
55
<link rel="stylesheet" href="../lib/codemirror.css">
66
<script src="../lib/codemirror.js"></script>
77
<script src="../lib/util/overlay.js"></script>
@@ -14,7 +14,7 @@
1414
</style>
1515
</head>
1616
<body>
17-
<h1>CodeMirror 2: Overlay Parser Demo</h1>
17+
<h1>CodeMirror: Overlay Parser Demo</h1>
1818

1919
<form><textarea id="code" name="code">
2020
<html>

demo/preview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<title>CodeMirror 2: HTML5 preview</title>
4+
<title>CodeMirror: HTML5 preview</title>
55
<meta charset=utf-8>
66
<script src=../lib/codemirror.js></script>
77
<script src=../mode/xml/xml.js></script>
@@ -26,7 +26,7 @@
2626
</style>
2727
</head>
2828
<body>
29-
<h1>CodeMirror 2: HTML5 preview</h1>
29+
<h1>CodeMirror: HTML5 preview</h1>
3030
<textarea id=code name=code>
3131
<!doctype html>
3232
<html>

0 commit comments

Comments
 (0)