Trigger Summernote’s built-in no-selection status message
The editor still uses .note-status-output itself. One current example is
editor.fontStyling(...). This page triggers that exact status-output branch through the editor
module so the current built-in feedback markup is visible on demand.
Feedback example paragraph.
Status output and HTML
Ready.
Example configuration - Built-in Feedback
summernote.create('#modules-feedback-editor', {
height: 220,
});
const editor = summernote.getInstance('#modules-feedback-editor').modules.editor;
const originalGetLastRange = editor.getLastRange.bind(editor);
editor.getLastRange = () => '';
editor.fontStyling('font-weight', '700');
editor.getLastRange = originalGetLastRange;