Replace tags

This example shows how the 'replaceTags' setting replaces the specified tags.

Code

<!-- element -->
<textarea id="entry">...</textarea>

<!-- call -->
<script>
let app = Redactor('#entry', {
    replaceTags: {
        b: 'strong',
        i: 'em'
    }
});
</script>