Users and collaborators community Ask a question or leave a feedback about Editor.js https://github.com/codex-team/editor.js Please, write in English. 💝 Support project: http://opencollective.com/editorjs
It will be based on Operational Transformation and our new Document Model
Читать полностью…and how are you planning to implement collaborative editing in the future? it will be based on Y.js?
Читать полностью…Nice. I will see if I am able to do it myself. Thank you for your answer
Читать полностью…Hi guys, I try to create a block programmtically with insert method. Is there a way to pass tune data to this block ? I only find name/id/data,Index and so on but nothig for tunes data. best
Читать полностью…📦 editorjs/embed">@editorjs/embed 2.7.1 was published
Читать полностью…That is just a simple license note. The list in readme file is getting updated. It is a placeholder for more popular packages.
Читать полностью…📦 editorjs/paragraph">@editorjs/paragraph 2.11.4 was published
Читать полностью…I figured this might be the fix but I can't find how to catch these events for a specific block type. Do you have any ideas?
Читать полностью…It's just a guess, but you can try to catch these events (arrows, backspace and del btn keydowns) before they're going outside of the block, and stop propagation
Читать полностью…this is the .ce-popover of first editor (there are multiple instances of editors). anyone knows what could be the issue? (Browser Chrome, Firefox in Windows)
Читать полностью…Hi, the blocks.insert()
does not support tunes at the moment. I can add it in a few days, or you can do it by yourself. Check this line: https://github.com/codex-team/editor.js/blob/next/src/components/modules/api/blocks.ts#L248
Hey guys, I am looking for a freelancer with hands-on experience on editor.js
Читать полностью…Hi,
Would it be possible to have pages in the editor?
Pages in the sense similar to Google docs
Where user see the content split between different areas/pages
When content overflows vertically it goes to next Page?
Here are a few options: https://github.com/editor-js/awesome-editorjs
Читать полностью…I managed to get it working with some help from this comment https://github.com/codex-team/editor.js/issues/1386#issue-723369679
Читать полностью…Hi, cant solve for react component of EditorJs, who have solution, please help
Читать полностью…Hello, I'm trying to create a block tool that creates a CortexJS math field but I seem to have issues when typing anything on the math field. For some reason the caret will move out to the block above or below by using any of the arrow keys. The whole block gets destroyed when I backspace even though there's stuff in it. Pressing enter moves the caret to a new block below or there ends up being two carets (math field and editorjs text??)
I tried a few things such as enableLineBreaks and this does not happen if the math field is not created within editorjs (the cursor does not jump out). Here's the code so far: https://hastebin.skyra.pw/lenodirozi.htm does anyone any suggestions?
<Form onFinish={handleSubmit}>
<Form.Item label="" name="">
<Input />
</Form.Item>
<Form.Item label="" name="">
<EditorComponent />
</Form.Item>
<Form.Item>
<Button type="primary" htmlType="submit">
Save
</Button>
</Form.Item>
</Form>