Skip to content

Commit 522f4bc

Browse files
authored
Feature/renaming (#8)
* Rename all occurences * 1.3.0 * Update packages * Rename repo * Create .npmignore
1 parent b8dea69 commit 522f4bc

8 files changed

Lines changed: 3948 additions & 5351 deletions

File tree

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea/
2+
assets/
3+
src/
4+
webpack.config.js
5+
yarn.lock

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
![](https://badgen.net/badge/CodeX%20Editor/v2.0/blue)
1+
![](https://badgen.net/badge/Editor.js/v2.0/blue)
22

33
# InlineCode Tool
44

5-
Inline Tool for marking code-fragments for the [CodeX Editor](https://ifmo.su/editor).
5+
Inline Tool for marking code-fragments for the [Editor.js](https://ifmo.su/editor).
66

77
![](assets/example.gif)
88

@@ -13,13 +13,13 @@ Inline Tool for marking code-fragments for the [CodeX Editor](https://ifmo.su/ed
1313
Get the package
1414

1515
```shell
16-
npm i --save-dev codex.editor.inline-code
16+
npm i --save-dev @editorjs/inline-code
1717
```
1818

1919
Include module at your application
2020

2121
```javascript
22-
const InlineCode = require('codex.editor.inline-code');
22+
const InlineCode = require('@editorjs/inline-code');
2323
```
2424

2525
### Download to your project's source dir
@@ -29,22 +29,22 @@ const InlineCode = require('codex.editor.inline-code');
2929

3030
### Load from CDN
3131

32-
You can load specific version of package from [jsDelivr CDN](https://www.jsdelivr.com/package/npm/codex.editor.inline-code).
32+
You can load specific version of package from [jsDelivr CDN](https://www.jsdelivr.com/package/npm/@editorjs/inline-code).
3333

34-
`https://cdn.jsdelivr.net/npm/codex.editor.inline-code@1.0.1`
34+
`https://cdn.jsdelivr.net/npm/@editorjs/inline-code@1.0.1`
3535

36-
Require this script on a page with CodeX Editor.
36+
Require this script on a page with Editor.js.
3737

3838
```html
3939
<script src="..."></script>
4040
```
4141

4242
## Usage
4343

44-
Add a new Tool to the `tools` property of the CodeX Editor initial config.
44+
Add a new Tool to the `tools` property of the Editor.js initial config.
4545

4646
```javascript
47-
var editor = CodexEditor({
47+
var editor = EditorJS({
4848
...
4949

5050
tools: {

dist/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)