I am trying to show Editorjs Output json on Editorjs again.
I tried with render method , it is not working.
I want to show my JSON on Editorjs in edit mode.
Like this.
<div id="editorjs">
</div>
<script src="{{ asset('js/app.js')}}"></script>
<script>
const editor = new EditorJS({
editor.render(
blocks: [
{
type: "image",
data: {
url: "https://cdn.pixabay.com/photo/2017/09/01/21/53/blue-2705642_1280.jpg"
}
},
{
type: "header",
data: {
text: "New header",
level: 2
}
}
]
});
}
)
</script>
And it should show like this.

How should I render it?
I am trying to show Editorjs Output json on Editorjs again.
I tried with
rendermethod , it is not working.I want to show my JSON on Editorjs in edit mode.
Like this.
And it should show like this.

How should I render it?