Go to file
2018-08-03 15:12:55 +03:00
fonts/codex_editor anchors added (#150) 2017-02-08 09:39:07 +03:00
modules check for a coords or focusedNode is null (#255) 2018-05-25 17:49:46 +03:00
plugins Paragraph tool: validate nbsp and empty <p>-tags 2018-02-01 20:48:20 +03:00
server fixed caret transition to empty list content
 and pasting (#75) 2016-07-14 16:09:09 +03:00
.eslintrc Destroy module (#157) 2017-02-13 20:54:18 +03:00
.gitignore Stylelint config added 2017-04-22 17:13:43 +03:00
.jshintrc Improve AJAX context saving (#184) 2017-04-23 17:11:03 +03:00
.stylelintrc Stylelint config added 2017-04-22 17:13:43 +03:00
CODEOWNERS Add CODEOWNERS 2017-08-30 02:16:33 +03:00
codex-editor.css raw plugin added (#163) 2017-02-27 14:44:22 +03:00
codex-editor.js check for a coords or focusedNode is null (#255) 2018-05-25 17:49:46 +03:00
codex-editor.js.map check for a coords or focusedNode is null (#255) 2018-05-25 17:49:46 +03:00
codex.js sanitizer configuration (#179) 2017-03-16 00:42:47 +03:00
example.html editor.settings.placeholder 2017-08-30 06:48:52 +03:00
icons.css new redactor version (#94) 2016-12-07 21:25:31 +03:00
LICENSE Initial commit 2015-11-28 23:56:35 +03:00
package-lock.json Hot fix for Codex.Notes 2017-10-12 20:04:35 +03:00
package.json check for a coords or focusedNode is null (#255) 2018-05-25 17:49:46 +03:00
README.md Add annotation about 2.0 status (#256) 2018-05-28 22:38:08 +03:00
webpack.config.js Improve AJAX context saving (#184) 2017-04-23 17:11:03 +03:00

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


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

{
  "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