This example shows how the 'replaceTags' setting replaces the specified tags.
<!-- element -->
<textarea id="entry">...</textarea>
<!-- call -->
<script>
let app = Redactor('#entry', {
replaceTags: {
b: 'strong',
i: 'em'
}
});
</script>