editorjs-html icon indicating copy to clipboard operation
editorjs-html copied to clipboard

A javascript library to parse editorjs clean data to html. It is adaptable and usable in all kind of projects.

Results 12 editorjs-html issues
Sort by recently updated
recently updated
newest added

Hi, I'm using editor.js with a plugin that allows aligning paragraphs. This plugin [editorjs-paragraph-with-alignment](https://github.com/kaaaaaaaaaaai/paragraph-with-alignment) generate the output data with `alignment` in addition to the`text`: Output data Field | Type |...

Bumps [terser](https://github.com/terser/terser) from 4.7.0 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) v4.8.0 Support for numeric separators (million...

dependencies

#39 @pavittarx could you please review this PR, if you have any concerns please let me know. Thanks

As per my observation table type support was not there. And in this PR , i have given the support for the table type. Also i have tested this by...

Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.9.5 to 7.23.2. Release notes Sourced from @​babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...

dependencies

#### Expected behaviour Given nested list as below ```markdown - Green 1. Lime 2. Mint - Red - Garnet - Crimson - Blue ``` Should be parsed into ```html Green...

Resolves #53. ### Tests Tests pass as shown below: ```bash MINGW64 ~/Desktop/Programming/work/editorjs-html (master) $ npm run test > [email protected] test > npm run build && node test/test > [email protected] build...

## The Problem Looking at the clean data of a list using the `@editorjs/nested-list` plugin, it seems that each `item[*]` child has an `item[*].items` automatically added to it, but with...

Hi hope I can explain this well. When trying to use the [Embed Tool](https://github.com/editor-js/embed), most embed types get blocked in editorjs-html by default with this error message: > Saving failed:...

 hello there, I have create a function to handle `checklist` as following: ```typescript function checkLisParser(block: CheckListBlock) { const items = block.data.items; const parsedItems = items.map(item => ( ` ${item.text} `...