|
|
@@ -6,4 +6,13 @@
|
|
|
|
|
|
You should be able to:
|
|
|
- see different markers class
|
|
|
-- manually invoke highlight command in console
|
|
|
+- manually invoke highlight command in console:
|
|
|
+
|
|
|
+```
|
|
|
+editor.execute( 'highlight', { class: 'marker' } );
|
|
|
+editor.execute( 'highlight', { class: 'marker-green' } );
|
|
|
+editor.execute( 'highlight', { class: 'marker-pink' } );
|
|
|
+
|
|
|
+editor.execute( 'highlight', { class: 'pen-red' } );
|
|
|
+editor.execute( 'highlight', { class: 'pen-blue' } );
|
|
|
+```
|