Skip to content

Commit a9b716c

Browse files
committed
Release v2.8.0
1 parent 2d5a22e commit a9b716c

File tree

3 files changed

+50
-50
lines changed

3 files changed

+50
-50
lines changed

docs/_index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title = 'Flexible Syntax Highlighted Editable Textareas'
88

99
## Download
1010

11-
*`code-input.js` is free, libre, open source software under the MIT (AKA Expat) license.* You have choices! **Download it from the Git repository on [GitHub](https://github.com/WebCoder49/code-input/tree/v2.7.3) or [Codeberg](https://codeberg.org/code-input-js/code-input-js/), [in a ZIP archive](/release/code-input-js-v2.7.3.zip), [in a TAR.GZ archive](/release/code-input-js-v2.7.3.tar.gz), or from `@webcoder49/code-input` on the NPM registry ([Yarn](https://yarnpkg.com/package?name=@webcoder49/code-input), [NPM](https://npmjs.com/package/@webcoder49/code-input), etc.).**
11+
*`code-input.js` is free, libre, open source software under the MIT (AKA Expat) license.* You have choices! **Download it from the Git repository on [GitHub](https://github.com/WebCoder49/code-input/tree/v2.8.0) or [Codeberg](https://codeberg.org/code-input-js/code-input-js/), [in a ZIP archive](/release/code-input-js-v2.8.0.zip), [in a TAR.GZ archive](/release/code-input-js-v2.8.0.tar.gz), or from `@webcoder49/code-input` on the NPM registry ([Yarn](https://yarnpkg.com/package?name=@webcoder49/code-input), [NPM](https://npmjs.com/package/@webcoder49/code-input), etc.).**
1212

1313
[Want to contribute to the code? You're very welcome to! See here.](#contributing)
1414

@@ -32,9 +32,9 @@ title = 'Flexible Syntax Highlighted Editable Textareas'
3232
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.30/components/prism-core.min.js" data-manual></script><!--Remove data-manual if also using Prism normally-->
3333
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.30/plugins/autoloader/prism-autoloader.min.js"></script>
3434
<!--2. Import code-input-js-->
35-
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/code-input.min.js"></script>
36-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/code-input.min.css">
37-
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/plugins/indent.min.js"></script>
35+
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/code-input.min.js"></script>
36+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/code-input.min.css">
37+
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/plugins/indent.min.js"></script>
3838
<!--3. Join code-input-js to highlighter-->
3939
<script>codeInput.registerTemplate("syntax-highlighted", new codeInput.templates.Prism(Prism, [new codeInput.plugins.Indent()]));</script>
4040
</head>
@@ -71,13 +71,13 @@ console.log("Hello, World!");</textarea></code-input>
7171
7272
<!--Import code-input-->
7373
<!--The same goes for downloaded versions.-->
74-
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/code-input.min.js"></script>
75-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/code-input.min.css">
74+
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/code-input.min.js"></script>
75+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/code-input.min.css">
7676
7777
<!--Import some code-input plugins-->
7878
<!--The same goes for downloaded versions.-->
7979
<!--Plugin files are here: https://code-input-js.org/plugins.-->
80-
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/plugins/indent.min.js"></script>
80+
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/plugins/indent.min.js"></script>
8181
8282
<!--Register code-input template-->
8383
<!--This can be before the code-input element is created, in which case it will defer the registration of all code-input
@@ -131,13 +131,13 @@ console.log("Hello, World!");</textarea></code-input>
131131
132132
<!--Import code-input-->
133133
<!--The same goes for downloaded versions.-->
134-
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/code-input.min.js"></script>
135-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/code-input.min.css">
134+
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/code-input.min.js"></script>
135+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/code-input.min.css">
136136
137137
<!--Import some code-input plugins-->
138138
<!--The same goes for downloaded versions.-->
139139
<!--Plugin files are here: https://code-input-js.org/plugins.-->
140-
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/plugins/indent.min.js"></script>
140+
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/plugins/indent.min.js"></script>
141141
142142
<!--Register code-input template-->
143143
<!--This can be before the code-input element is created, in which case it will defer the registration of all code-input
@@ -179,13 +179,13 @@ console.log("Hello, World!");</textarea></code-input>
179179
180180
<!--Import code-input-->
181181
<!--The same goes for downloaded versions.-->
182-
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/code-input.min.js"></script>
183-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/code-input.min.css">
182+
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/code-input.min.js"></script>
183+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/code-input.min.css">
184184
185185
<!--Import some code-input plugins-->
186186
<!--The same goes for downloaded versions.-->
187187
<!--Plugin files are here: https://code-input-js.org/plugins.-->
188-
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.7/plugins/indent.min.js"></script>
188+
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@2.8/plugins/indent.min.js"></script>
189189
190190
<!--Register code-input template-->
191191
<!--This can be before the code-input element is created, in which case it will defer the registration of all code-input

0 commit comments

Comments
 (0)