2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
( function( $ ) {
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
2017-01-16 01:49:41 +01:00
|
|
|
* @summary Utility functions for the editor.
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* @since 2.5.0
|
2017-01-06 23:11:57 +01:00
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
function SwitchEditors() {
|
|
|
|
var tinymce, $$,
|
|
|
|
exports = {};
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
function init() {
|
|
|
|
if ( ! tinymce && window.tinymce ) {
|
|
|
|
tinymce = window.tinymce;
|
|
|
|
$$ = tinymce.$;
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
2017-01-16 01:49:41 +01:00
|
|
|
* @summary Handles onclick events for the Visual/Text tabs.
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
|
|
|
* @since 4.3.0
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
$$( document ).on( 'click', function( event ) {
|
|
|
|
var id, mode,
|
|
|
|
target = $$( event.target );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( target.hasClass( 'wp-switch-editor' ) ) {
|
|
|
|
id = target.attr( 'data-wp-editor-id' );
|
|
|
|
mode = target.hasClass( 'switch-tmce' ) ? 'tmce' : 'html';
|
|
|
|
switchEditor( id, mode );
|
|
|
|
}
|
|
|
|
});
|
2013-11-15 22:03:10 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
2017-01-16 01:49:41 +01:00
|
|
|
* @summary Returns the height of the editor toolbar(s) in px.
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
|
|
|
* @since 3.9.0
|
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* @param {Object} editor The TinyMCE editor.
|
2017-01-06 23:11:57 +01:00
|
|
|
* @returns {number} If the height is between 10 and 200 return the height,
|
|
|
|
* else return 30.
|
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
function getToolbarHeight( editor ) {
|
|
|
|
var node = $$( '.mce-toolbar-grp', editor.getContainer() )[0],
|
2014-04-04 03:31:15 +02:00
|
|
|
height = node && node.clientHeight;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
|
2014-04-04 03:31:15 +02:00
|
|
|
if ( height && height > 10 && height < 200 ) {
|
|
|
|
return parseInt( height, 10 );
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
2014-04-04 03:31:15 +02:00
|
|
|
return 30;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
2017-01-16 01:49:41 +01:00
|
|
|
* @summary Switches the editor between Visual and Text mode.
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* @since 2.5.0
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
|
|
|
* @memberof switchEditors
|
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* @param {string} id The id of the editor you want to change the editor mode for. Default: `content`.
|
|
|
|
* @param {string} mode The mode you want to switch to. Default: `toggle`.
|
2017-01-06 23:11:57 +01:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
function switchEditor( id, mode ) {
|
|
|
|
id = id || 'content';
|
|
|
|
mode = mode || 'toggle';
|
|
|
|
|
|
|
|
var editorHeight, toolbarHeight, iframe,
|
|
|
|
editor = tinymce.get( id ),
|
|
|
|
wrap = $$( '#wp-' + id + '-wrap' ),
|
|
|
|
$textarea = $$( '#' + id ),
|
|
|
|
textarea = $textarea[0];
|
|
|
|
|
|
|
|
if ( 'toggle' === mode ) {
|
|
|
|
if ( editor && ! editor.isHidden() ) {
|
|
|
|
mode = 'html';
|
|
|
|
} else {
|
|
|
|
mode = 'tmce';
|
|
|
|
}
|
2013-11-15 22:03:10 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( 'tmce' === mode || 'tinymce' === mode ) {
|
2017-01-16 01:49:41 +01:00
|
|
|
// If the editor is visible we are already in `tinymce` mode.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( editor && ! editor.isHidden() ) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Insert closing tags for any open tags in QuickTags.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( typeof( window.QTags ) !== 'undefined' ) {
|
|
|
|
window.QTags.closeAllTags( id );
|
|
|
|
}
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
editorHeight = parseInt( textarea.style.height, 10 ) || 0;
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( editor ) {
|
|
|
|
editor.show();
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// No point to resize the iframe in iOS.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( ! tinymce.Env.iOS && editorHeight ) {
|
|
|
|
toolbarHeight = getToolbarHeight( editor );
|
|
|
|
editorHeight = editorHeight - toolbarHeight + 14;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Sane limit for the editor height.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( editorHeight > 50 && editorHeight < 5000 ) {
|
|
|
|
editor.theme.resizeTo( null, editorHeight );
|
|
|
|
}
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
2015-06-22 00:01:28 +02:00
|
|
|
} else {
|
|
|
|
tinymce.init( window.tinyMCEPreInit.mceInit[id] );
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
wrap.removeClass( 'html-active' ).addClass( 'tmce-active' );
|
|
|
|
$textarea.attr( 'aria-hidden', true );
|
|
|
|
window.setUserSetting( 'editor', 'tinymce' );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
} else if ( 'html' === mode ) {
|
2017-01-16 01:49:41 +01:00
|
|
|
// If the editor is hidden (Quicktags is shown) we don't need to switch.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( editor && editor.isHidden() ) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( editor ) {
|
2017-01-16 01:49:41 +01:00
|
|
|
// Don't resize the textarea in iOS. The iframe is forced to 100% height there, we shouldn't match it.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( ! tinymce.Env.iOS ) {
|
|
|
|
iframe = editor.iframeElement;
|
|
|
|
editorHeight = iframe ? parseInt( iframe.style.height, 10 ) : 0;
|
2014-05-30 04:38:16 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( editorHeight ) {
|
|
|
|
toolbarHeight = getToolbarHeight( editor );
|
|
|
|
editorHeight = editorHeight + toolbarHeight - 14;
|
2014-05-30 04:38:16 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Sane limit for the textarea height.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( editorHeight > 50 && editorHeight < 5000 ) {
|
|
|
|
textarea.style.height = editorHeight + 'px';
|
|
|
|
}
|
2014-05-30 04:38:16 +02:00
|
|
|
}
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
editor.hide();
|
|
|
|
} else {
|
2017-01-16 01:49:41 +01:00
|
|
|
// There is probably a JS error on the page. The TinyMCE editor instance doesn't exist. Show the textarea.
|
2015-06-22 00:01:28 +02:00
|
|
|
$textarea.css({ 'display': '', 'visibility': '' });
|
2013-11-15 22:03:10 +01:00
|
|
|
}
|
2013-03-22 21:43:37 +01:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
wrap.removeClass( 'tmce-active' ).addClass( 'html-active' );
|
|
|
|
$textarea.attr( 'aria-hidden', false );
|
|
|
|
window.setUserSetting( 'editor', 'html' );
|
2013-03-22 21:43:37 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
2017-01-16 01:49:41 +01:00
|
|
|
* @summary Replaces <p> tags with two line breaks. "Opposite" of wpautop().
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* Replaces <p> tags with two line breaks except where the <p> has attributes.
|
|
|
|
* Unifies whitespace.
|
|
|
|
* Indents <li>, <dt> and <dd> for better readability.
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* @since 2.5.0
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
|
|
|
* @memberof switchEditors
|
|
|
|
*
|
|
|
|
* @param {string} html The content from the editor.
|
2017-01-16 01:49:41 +01:00
|
|
|
* @return {string} The content with stripped paragraph tags.
|
2017-01-06 23:11:57 +01:00
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
function removep( html ) {
|
2017-01-16 02:06:40 +01:00
|
|
|
var blocklist = 'blockquote|ul|ol|li|dl|dt|dd|table|thead|tbody|tfoot|tr|th|td|h[1-6]|fieldset|figure',
|
2015-06-22 00:01:28 +02:00
|
|
|
blocklist1 = blocklist + '|div|p',
|
|
|
|
blocklist2 = blocklist + '|pre',
|
|
|
|
preserve_linebreaks = false,
|
2016-07-13 00:09:31 +02:00
|
|
|
preserve_br = false,
|
|
|
|
preserve = [];
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( ! html ) {
|
|
|
|
return '';
|
|
|
|
}
|
2014-07-28 21:44:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Protect script and style tags.
|
2016-07-13 00:09:31 +02:00
|
|
|
if ( html.indexOf( '<script' ) !== -1 || html.indexOf( '<style' ) !== -1 ) {
|
|
|
|
html = html.replace( /<(script|style)[^>]*>[\s\S]*?<\/\1>/g, function( match ) {
|
|
|
|
preserve.push( match );
|
|
|
|
return '<wp-preserve>';
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Protect pre tags.
|
2016-07-13 00:09:31 +02:00
|
|
|
if ( html.indexOf( '<pre' ) !== -1 ) {
|
2015-06-22 00:01:28 +02:00
|
|
|
preserve_linebreaks = true;
|
2016-07-13 00:09:31 +02:00
|
|
|
html = html.replace( /<pre[^>]*>[\s\S]+?<\/pre>/g, function( a ) {
|
2015-06-22 00:01:28 +02:00
|
|
|
a = a.replace( /<br ?\/?>(\r\n|\n)?/g, '<wp-line-break>' );
|
|
|
|
a = a.replace( /<\/?p( [^>]*)?>(\r\n|\n)?/g, '<wp-line-break>' );
|
|
|
|
return a.replace( /\r?\n/g, '<wp-line-break>' );
|
|
|
|
});
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove line breaks but keep <br> tags inside image captions.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( html.indexOf( '[caption' ) !== -1 ) {
|
|
|
|
preserve_br = true;
|
|
|
|
html = html.replace( /\[caption[\s\S]+?\[\/caption\]/g, function( a ) {
|
|
|
|
return a.replace( /<br([^>]*)>/g, '<wp-temp-br$1>' ).replace( /[\r\n\t]+/, '' );
|
|
|
|
});
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Normalize white space characters before and after block tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( new RegExp( '\\s*</(' + blocklist1 + ')>\\s*', 'g' ), '</$1>\n' );
|
|
|
|
html = html.replace( new RegExp( '\\s*<((?:' + blocklist1 + ')(?: [^>]*)?)>', 'g' ), '\n<$1>' );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
// Mark </p> if it has any attributes.
|
|
|
|
html = html.replace( /(<p [^>]+>.*?)<\/p>/g, '$1</p#>' );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Preserve the first <p> inside a <div>.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /<div( [^>]*)?>\s*<p>/gi, '<div$1>\n\n' );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove paragraph tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /\s*<p>/gi, '' );
|
|
|
|
html = html.replace( /\s*<\/p>\s*/gi, '\n\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Normalize white space chars and remove multiple line breaks.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /\n[\s\u00a0]+\n/g, '\n\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Rrplace <br> tags with a line break.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /\s*<br ?\/?>\s*/gi, '\n' );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Fix line breaks around <div>.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /\s*<div/g, '\n<div' );
|
|
|
|
html = html.replace( /<\/div>\s*/g, '</div>\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Fix line breaks around caption shortcodes.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /\s*\[caption([^\[]+)\[\/caption\]\s*/gi, '\n\n[caption$1[/caption]\n\n' );
|
|
|
|
html = html.replace( /caption\]\n\n+\[caption/g, 'caption]\n\n[caption' );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Pad block elements tags with a line break.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( new RegExp('\\s*<((?:' + blocklist2 + ')(?: [^>]*)?)\\s*>', 'g' ), '\n<$1>' );
|
|
|
|
html = html.replace( new RegExp('\\s*</(' + blocklist2 + ')>\\s*', 'g' ), '</$1>\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Indent <li>, <dt> and <dd> tags.
|
2015-12-18 00:06:25 +01:00
|
|
|
html = html.replace( /<((li|dt|dd)[^>]*)>/g, ' \t<$1>' );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Fix line breaks around <select> and <option>.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( html.indexOf( '<option' ) !== -1 ) {
|
|
|
|
html = html.replace( /\s*<option/g, '\n<option' );
|
|
|
|
html = html.replace( /\s*<\/select>/g, '\n</select>' );
|
|
|
|
}
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Pad <hr> with two line breaks.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( html.indexOf( '<hr' ) !== -1 ) {
|
|
|
|
html = html.replace( /\s*<hr( [^>]*)?>\s*/g, '\n\n<hr$1>\n\n' );
|
|
|
|
}
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove line breaks in <object> tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( html.indexOf( '<object' ) !== -1 ) {
|
|
|
|
html = html.replace( /<object[\s\S]+?<\/object>/g, function( a ) {
|
|
|
|
return a.replace( /[\r\n]+/g, '' );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
// Unmark special paragraph closing tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /<\/p#>/g, '</p>\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Pad remaining <p> tags whit a line break.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /\s*(<p [^>]+>[\s\S]*?<\/p>)/g, '\n$1' );
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Trim.
|
2015-06-22 00:01:28 +02:00
|
|
|
html = html.replace( /^\s+/, '' );
|
|
|
|
html = html.replace( /[\s\u00a0]+$/, '' );
|
|
|
|
|
|
|
|
if ( preserve_linebreaks ) {
|
|
|
|
html = html.replace( /<wp-line-break>/g, '\n' );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( preserve_br ) {
|
|
|
|
html = html.replace( /<wp-temp-br([^>]*)>/g, '<br$1>' );
|
|
|
|
}
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
// Restore preserved tags.
|
2016-07-13 00:09:31 +02:00
|
|
|
if ( preserve.length ) {
|
|
|
|
html = html.replace( /<wp-preserve>/g, function() {
|
|
|
|
return preserve.shift();
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
return html;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
2017-01-16 01:49:41 +01:00
|
|
|
* @summary Replaces two line breaks with a paragraph tag and one line break with a <br>.
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
|
|
|
* Similar to `wpautop()` in formatting.php.
|
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* @since 2.5.0
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
|
|
|
* @memberof switchEditors
|
|
|
|
*
|
|
|
|
* @param {string} text The text input.
|
|
|
|
* @returns {string} The formatted text.
|
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
function autop( text ) {
|
|
|
|
var preserve_linebreaks = false,
|
|
|
|
preserve_br = false,
|
|
|
|
blocklist = 'table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre' +
|
|
|
|
'|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|legend|section' +
|
|
|
|
'|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary';
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
// Normalize line breaks.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /\r\n|\r/g, '\n' );
|
|
|
|
|
|
|
|
if ( text.indexOf( '\n' ) === -1 ) {
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove line breaks from <object>.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( text.indexOf( '<object' ) !== -1 ) {
|
|
|
|
text = text.replace( /<object[\s\S]+?<\/object>/g, function( a ) {
|
|
|
|
return a.replace( /\n+/g, '' );
|
|
|
|
});
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove line breaks from tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /<[^<>]+>/g, function( a ) {
|
|
|
|
return a.replace( /[\n\t ]+/g, ' ' );
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Preserve line breaks in <pre> and <script> tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( text.indexOf( '<pre' ) !== -1 || text.indexOf( '<script' ) !== -1 ) {
|
|
|
|
preserve_linebreaks = true;
|
2015-11-22 20:13:28 +01:00
|
|
|
text = text.replace( /<(pre|script)[^>]*>[\s\S]*?<\/\1>/g, function( a ) {
|
2015-06-22 00:01:28 +02:00
|
|
|
return a.replace( /\n/g, '<wp-line-break>' );
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
2015-06-22 00:01:28 +02:00
|
|
|
}
|
|
|
|
|
2017-01-16 02:06:40 +01:00
|
|
|
if ( text.indexOf( '<figcaption' ) !== -1 ) {
|
|
|
|
text = text.replace( /\s*(<figcaption[^>]*>)/g, '$1' );
|
|
|
|
text = text.replace( /<\/figcaption>\s*/g, '</figcaption>' );
|
|
|
|
}
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
// Keep <br> tags inside captions.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( text.indexOf( '[caption' ) !== -1 ) {
|
|
|
|
preserve_br = true;
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /\[caption[\s\S]+?\[\/caption\]/g, function( a ) {
|
|
|
|
a = a.replace( /<br([^>]*)>/g, '<wp-temp-br$1>' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
a = a.replace( /<[^<>]+>/g, function( b ) {
|
|
|
|
return b.replace( /[\n\t ]+/, ' ' );
|
|
|
|
});
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
return a.replace( /\s*\n\s*/g, '<wp-temp-br />' );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
text = text + '\n\n';
|
|
|
|
text = text.replace( /<br \/>\s*<br \/>/gi, '\n\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Pad block tags with two line breaks.
|
2016-09-13 08:03:31 +02:00
|
|
|
text = text.replace( new RegExp( '(<(?:' + blocklist + ')(?: [^>]*)?>)', 'gi' ), '\n\n$1' );
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( new RegExp( '(</(?:' + blocklist + ')>)', 'gi' ), '$1\n\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
text = text.replace( /<hr( [^>]*)?>/gi, '<hr$1>\n\n' );
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove white space chars around <option>.
|
2017-01-06 23:11:57 +01:00
|
|
|
text = text.replace( /\s*<option/gi, '<option' );
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /<\/option>\s*/gi, '</option>' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Normalize multiple line breaks and white space chars.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /\n\s*\n+/g, '\n\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Convert two line breaks to a paragraph.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /([\s\S]+?)\n\n/g, '<p>$1</p>\n' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
|
|
|
// Remove empty paragraphs.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /<p>\s*?<\/p>/gi, '');
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove <p> tags that are around block tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( new RegExp( '<p>\\s*(</?(?:' + blocklist + ')(?: [^>]*)?>)\\s*</p>', 'gi' ), '$1' );
|
|
|
|
text = text.replace( /<p>(<li.+?)<\/p>/gi, '$1');
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Fix <p> in blockquotes.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /<p>\s*<blockquote([^>]*)>/gi, '<blockquote$1><p>');
|
|
|
|
text = text.replace( /<\/blockquote>\s*<\/p>/gi, '</p></blockquote>');
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove <p> tags that are wrapped around block tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( new RegExp( '<p>\\s*(</?(?:' + blocklist + ')(?: [^>]*)?>)', 'gi' ), '$1' );
|
|
|
|
text = text.replace( new RegExp( '(</?(?:' + blocklist + ')(?: [^>]*)?>)\\s*</p>', 'gi' ), '$1' );
|
2015-08-17 19:36:24 +02:00
|
|
|
|
|
|
|
text = text.replace( /(<br[^>]*>)\s*\n/gi, '$1' );
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Add <br> tags.
|
2015-08-17 19:36:24 +02:00
|
|
|
text = text.replace( /\s*\n/g, '<br />\n');
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove <br> tags that are around block tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( new RegExp( '(</?(?:' + blocklist + ')[^>]*>)\\s*<br />', 'gi' ), '$1' );
|
|
|
|
text = text.replace( /<br \/>(\s*<\/?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)>)/gi, '$1' );
|
2017-01-06 23:11:57 +01:00
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Remove <p> and <br> around captions.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /(?:<p>|<br ?\/?>)*\s*\[caption([^\[]+)\[\/caption\]\s*(?:<\/p>|<br ?\/?>)*/gi, '[caption$1[/caption]' );
|
|
|
|
|
2017-01-16 01:49:41 +01:00
|
|
|
// Make sure there is <p> when there is </p> inside block tags that can contain other blocks.
|
2015-06-22 00:01:28 +02:00
|
|
|
text = text.replace( /(<(?:div|th|td|form|fieldset|dd)[^>]*>)(.*?)<\/p>/g, function( a, b, c ) {
|
|
|
|
if ( c.match( /<p( [^>]*)?>/ ) ) {
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
return b + '<p>' + c + '</p>';
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
// Restore the line breaks in <pre> and <script> tags.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( preserve_linebreaks ) {
|
|
|
|
text = text.replace( /<wp-line-break>/g, '\n' );
|
2013-11-15 22:03:10 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
// Restore the <br> tags in captions.
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( preserve_br ) {
|
|
|
|
text = text.replace( /<wp-temp-br([^>]*)>/g, '<br$1>' );
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
return text;
|
2013-11-15 22:03:10 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
2017-01-16 01:49:41 +01:00
|
|
|
* @summary Fires custom jQuery events `beforePreWpautop` and `afterPreWpautop` when jQuery is available.
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* @since 2.9.0
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
|
|
|
* @memberof switchEditors
|
|
|
|
*
|
|
|
|
* @param {String} html The content from the visual editor.
|
2017-01-16 01:49:41 +01:00
|
|
|
* @returns {String} the filtered content.
|
2017-01-06 23:11:57 +01:00
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
function pre_wpautop( html ) {
|
|
|
|
var obj = { o: exports, data: html, unfiltered: html };
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( $ ) {
|
|
|
|
$( 'body' ).trigger( 'beforePreWpautop', [ obj ] );
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
obj.data = removep( obj.data );
|
2013-11-15 22:03:10 +01:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( $ ) {
|
|
|
|
$( 'body' ).trigger( 'afterPreWpautop', [ obj ] );
|
|
|
|
}
|
|
|
|
|
|
|
|
return obj.data;
|
2013-11-15 22:03:10 +01:00
|
|
|
}
|
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
2017-01-16 01:49:41 +01:00
|
|
|
* @summary Fires custom jQuery events `beforeWpautop` and `afterWpautop` when jQuery is available.
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
2017-01-16 01:49:41 +01:00
|
|
|
* @since 2.9.0
|
2017-01-06 23:11:57 +01:00
|
|
|
*
|
|
|
|
* @memberof switchEditors
|
|
|
|
*
|
|
|
|
* @param {String} text The content from the text editor.
|
2017-01-16 01:49:41 +01:00
|
|
|
* @returns {String} filtered content.
|
2017-01-06 23:11:57 +01:00
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
function wpautop( text ) {
|
|
|
|
var obj = { o: exports, data: text, unfiltered: text };
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( $ ) {
|
|
|
|
$( 'body' ).trigger( 'beforeWpautop', [ obj ] );
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
obj.data = autop( obj.data );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( $ ) {
|
|
|
|
$( 'body' ).trigger( 'afterWpautop', [ obj ] );
|
|
|
|
}
|
2013-11-15 22:03:10 +01:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
return obj.data;
|
2013-11-15 22:03:10 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
if ( $ ) {
|
|
|
|
$( document ).ready( init );
|
|
|
|
} else if ( document.addEventListener ) {
|
|
|
|
document.addEventListener( 'DOMContentLoaded', init, false );
|
|
|
|
window.addEventListener( 'load', init, false );
|
|
|
|
} else if ( window.attachEvent ) {
|
|
|
|
window.attachEvent( 'onload', init );
|
|
|
|
document.attachEvent( 'onreadystatechange', function() {
|
|
|
|
if ( 'complete' === document.readyState ) {
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
} );
|
2013-11-15 22:03:10 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-06-22 00:01:28 +02:00
|
|
|
window.wp = window.wp || {};
|
|
|
|
window.wp.editor = window.wp.editor || {};
|
|
|
|
window.wp.editor.autop = wpautop;
|
|
|
|
window.wp.editor.removep = pre_wpautop;
|
|
|
|
|
|
|
|
exports = {
|
|
|
|
go: switchEditor,
|
|
|
|
wpautop: wpautop,
|
|
|
|
pre_wpautop: pre_wpautop,
|
|
|
|
_wp_Autop: autop,
|
|
|
|
_wp_Nop: removep
|
|
|
|
};
|
|
|
|
|
|
|
|
return exports;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
2015-06-22 00:01:28 +02:00
|
|
|
|
2017-01-06 23:11:57 +01:00
|
|
|
/**
|
|
|
|
* @namespace {SwitchEditors} switchEditors
|
|
|
|
* Expose the switch editors to be used globally.
|
|
|
|
*/
|
2015-06-22 00:01:28 +02:00
|
|
|
window.switchEditors = new SwitchEditors();
|
|
|
|
}( window.jQuery ));
|