Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pouchcms/sveditorjs

editorjs svelte wrapper
https://github.com/pouchcms/sveditorjs

Last synced: 3 months ago
JSON representation

editorjs svelte wrapper

Awesome Lists containing this project

README

        

## sveditorjs v2

sveditorjs can be embed into any svelte or sveltekit project,the editor is wraped around editorjs ,for block editing that outputs clean json document.json can be consumed by any app.

on version we added support for sveltekit
and added a utility helper
that generates html

## docs and example
see the docs and example here [sveditorjs](https://sveditorjs.vercel.app):

```bash
npm install --save sveditorjs
```
```js

import Editor ,{genHtml} from "$lib/index.js";

let modes = {
'js': 'JavaScript',
'py': 'Python',
'go': 'Go',
'cpp': 'C++',
'cs': 'C#',
'md': 'Markdown',
}
let data = {}; //correct editorjs json data
let urls = {} //this object should be
//{
upload:"",
load:"",
}
async function handleChange(ev){
console.log(ev.detail)
let editor = ev.detail.editor;
editor.save().then(async (savedData)=>{
// do something with data
console.log(window.current_sveditor);
// use helper to gen html
let html = await genHtml(savedData);
console.log(html);
}).catch((err)=>{console.log(err)})
}

{console.log("ready",ev.detail)}} on:editor_change ={(ev)=>{handleChange(ev)}} >

top


aside

extra unstyled


```