You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would allow extensions to parse content loaded into the editor in any format (HTML, Objects, Markdown...) and execute operations against the editor to insert the content into the model.
/** * Allows loading content in any format. This would pass the content to * installed extensions.onLoadContent callback to allow them to process it and * load it. * @param {*} content Content to load into the editor. * @param {boolean=} opt_override Whether to override the content of editor. * @param {string=} opt_loaderName The loader name if known. */Editor.prototype.loadContent=function(content,opt_overrideCurrentContent,opt_loaderName){}
The text was updated successfully, but these errors were encountered:
This would allow extensions to parse content loaded into the editor in any format (HTML, Objects, Markdown...) and execute operations against the editor to insert the content into the model.
core/abstract-extension.js
editor.js
The text was updated successfully, but these errors were encountered: