Skip to content

Commit dd83578

Browse files
authored
Add annotation about 2.0 status (codex-team#256)
1 parent b9b0713 commit dd83578

File tree

1 file changed

+49
-2
lines changed

1 file changed

+49
-2
lines changed

README.md

+49-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,49 @@
1-
# codex.editor
2-
CodeX Editor sources
1+
### NOTE
2+
3+
At the moment we working hard on the CodeX Editor 2.0 with completely new core, new API and great new documentation. Stay tuned and subsribe to us on the Twitter. Be in the front.
4+
5+
[http://twitter.com/codex_team](http://twitter.com/codex_team)
6+
7+
---
8+
9+
# CodeX Editor
10+
Next generation Editor for modern web applications.
11+
12+
### Block-styled
13+
14+
Entry composed by different and extended list of Blocks
15+
16+
### JSON as output
17+
18+
Outputs clear Blocks data via JSON
19+
20+
```json
21+
{
22+
"blocks": [
23+
{
24+
"type": "paragraph",
25+
"data": {
26+
"text": "There is a first paragraph"
27+
}
28+
},
29+
{
30+
"type": "header",
31+
"data": {
32+
"text": "Aaand here is a Header",
33+
"type": "H2"
34+
}
35+
},
36+
...
37+
]
38+
}
39+
```
40+
41+
### API oriented
42+
43+
Focused on the Plugins API that allows to create amazing Blocks
44+
45+
### Native JS
46+
47+
Zero-dependency — use everywhere you want
48+
49+

0 commit comments

Comments
 (0)