-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add annotation about 2.0 status (#256)
- Loading branch information
Showing
1 changed file
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,49 @@ | ||
# codex.editor | ||
CodeX Editor sources | ||
### NOTE | ||
|
||
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. | ||
|
||
[http://twitter.com/codex_team](http://twitter.com/codex_team) | ||
|
||
--- | ||
|
||
# CodeX Editor | ||
Next generation Editor for modern web applications. | ||
|
||
### Block-styled | ||
|
||
Entry composed by different and extended list of Blocks | ||
|
||
### JSON as output | ||
|
||
Outputs clear Blocks data via JSON | ||
|
||
```json | ||
{ | ||
"blocks": [ | ||
{ | ||
"type": "paragraph", | ||
"data": { | ||
"text": "There is a first paragraph" | ||
} | ||
}, | ||
{ | ||
"type": "header", | ||
"data": { | ||
"text": "Aaand here is a Header", | ||
"type": "H2" | ||
} | ||
}, | ||
... | ||
] | ||
} | ||
``` | ||
|
||
### API oriented | ||
|
||
Focused on the Plugins API that allows to create amazing Blocks | ||
|
||
### Native JS | ||
|
||
Zero-dependency — use everywhere you want | ||
|
||
|