@@ -14,6 +14,7 @@ import TextWatcher from '@ckeditor/ckeditor5-utils/src/textwatcher';
const DEFAULT_TRANSFORMATIONS = [
// Common symbols:
{ from: '(c)', to: '©' },
+ { from: '(r)', to: '®' },
{ from: '(tm)', to: '™' },
// Mathematical:
@@ -53,6 +53,7 @@ describe( 'Text transformation feature', () => {
describe( 'symbols', () => {
testTransformation( '(c)', '©' );
+ testTransformation( '(r)', '®' );
testTransformation( '(tm)', '™' );
} );