diff --git a/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js b/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js index 75e6b9085b..4f0b229109 100644 --- a/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js +++ b/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js @@ -270,8 +270,8 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) { html = html + '

' + __( 'When starting a new paragraph with one of these patterns followed by a space, the formatting will be applied automatically. Press Backspace or Escape to undo.' ) + '

' + '' + - tr({ '* or -': 'Bullet list' }) + - tr({ '1. or 1)': 'Numbered list' }) + + tr({ '* -': 'Bullet list' }) + + tr({ '1. 1)': 'Numbered list' }) + tr({ '>': 'Blockquote' }) + tr({ '##': 'Heading 2' }) + tr({ '###': 'Heading 3' }) +