From dd83578f8d01014aff6a7bb192c77a0c59e6ba90 Mon Sep 17 00:00:00 2001 From: Peter Savchenko Date: Mon, 28 May 2018 22:38:08 +0300 Subject: [PATCH] Add annotation about 2.0 status (#256) --- README.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 49 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0f53882..e947177c 100644 --- a/README.md +++ b/README.md @@ -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 + +