diff --git a/app/components/SimpleEditor/elements/isolatedNote/IsolatedNoteHTMLConverter.js b/app/components/SimpleEditor/elements/isolatedNote/IsolatedNoteHTMLConverter.js index 69668d75fe07e7df7075f2a245d3acd7f948e685..3aaf57fa52f380e1ce50f97bada5ccb8e5ac1663 100644 --- a/app/components/SimpleEditor/elements/isolatedNote/IsolatedNoteHTMLConverter.js +++ b/app/components/SimpleEditor/elements/isolatedNote/IsolatedNoteHTMLConverter.js @@ -1,4 +1,8 @@ export default { type: 'isolated-note', - tagName: 'isolated-note' + tagName: 'isolated-note', + + import: function (el, node, converter) { + node.content = converter.annotatedText(el, [node.id, 'content']) + } }