Feature

Find & Replace

Quickly search for text in the document and replace it individually or all at once.

toolbar: find shortcut: Ctrl + F

Find & Replace

Try finding the word SynapEditor in the text below and replacing it with another word.

SynapEditor is a web-based WYSIWYG HTML editor. It works across various browsers and provides rich editing features.

Supports options including case-sensitive search, whole word matching, and regular expression search.

Configuration

mode: classic · 1 button
var config = Object.assign(synapEditorConfig, {
    'editor.license': synapEditorLicense,
    'editor.lang': 'en',
    'editor.toolbar': [
        'find'
    ],
    'editor.menu.show': false
});

// Create editor instance
var editor = new SynapEditor('synapEditor', config, initialHtml);