Index: src/wp-admin/includes/revision.php
===================================================================
--- src/wp-admin/includes/revision.php	(revision 30122)
+++ src/wp-admin/includes/revision.php	(working copy)
@@ -73,7 +73,24 @@
 		/** This filter is documented in wp-admin/includes/revision.php */
 		$content_to = apply_filters( "_wp_post_revision_field_$field", $compare_to->$field, $field, $compare_to, 'to' );
 
-		$diff = wp_text_diff( $content_from, $content_to, array( 'show_split_view' => true ) );
+		$wp_text_diff_options = array( 'show_split_view' => false );
+		/**
+		 * Filter revisions text diff options.
+		 *
+		 * Filter the options passed to wp_text_diff.
+		 *
+		 * @param array $args {
+		 *                  Associative array of options to pass to wp_text_diff.
+		 *
+		 *                  @type bool wp_text_diff_options False for split (two columns), true for
+		 *                  not split (single column). Default false.
+		 *              }
+		 *
+		 * @since 4.1.0
+		 *
+		 */
+		$wp_text_diff_options = apply_filters( 'wp_text_diff_options', $wp_text_diff_options );
+		$diff = wp_text_diff( $content_from, $content_to, $wp_text_diff_options );
 
 		if ( ! $diff && 'post_title' === $field ) {
 			// It's a better user experience to still show the Title, even if it didn't change.
Index: src/wp-includes/wp-diff.php
===================================================================
--- src/wp-includes/wp-diff.php	(revision 30122)
+++ src/wp-includes/wp-diff.php	(working copy)
@@ -153,8 +153,25 @@
 	public function _added( $lines, $encode = true ) {
 		$r = '';
 		foreach ($lines as $line) {
-			if ( $encode )
-				$line = htmlspecialchars( $line );
+			if ( $encode ) {
+				$processed_line = htmlspecialchars( $line );
+
+				/**
+				 * Contextually filter a diffed line.
+				 *
+				 * Filters TextDiff processing of diffed line. By default, diffs are processed with
+				 * htmlspecialchars. Use this filter to remove or change the processing. Passes a context
+				 * indicating if the line is added, deleted or unchanged.
+				 *
+				 * @since 4.1.0
+				 *
+				 * @param String $processed_line The processed diffed line.
+				 * @param String $line           The unprocessed diffed line.
+		 		 * @param string null            The line context. Values are 'added', 'deleted' or 'context' (unchanged).
+				 */
+				$line = apply_filters( 'process_text_diff_html', $processed_line, $line, 'added' );
+			}
+
 			if ( $this->_show_split_view ) {
 				$r .= '<tr>' . $this->emptyLine() . $this->emptyLine() . $this->addedLine( $line ) . "</tr>\n";
 			} else {
@@ -176,7 +193,8 @@
 		$r = '';
 		foreach ($lines as $line) {
 			if ( $encode )
-				$line = htmlspecialchars( $line );
+				/** This filter is documented in /wp-includes/wp-diff.php */
+				$line = apply_filters( 'process_text_diff_html', htmlspecialchars( $line ), $line, 'deleted' );
 			if ( $this->_show_split_view ) {
 				$r .= '<tr>' . $this->deletedLine( $line ) . $this->emptyLine() . $this->emptyLine() . "</tr>\n";
 			} else {
@@ -199,7 +217,8 @@
 		$r = '';
 		foreach ($lines as $line) {
 			if ( $encode )
-				$line = htmlspecialchars( $line );
+				/** This filter is documented in /wp-includes/wp-diff.php */
+				$line = apply_filters( 'process_text_diff_html', htmlspecialchars( $line ), $line, 'context' );
 			if (  $this->_show_split_view ) {
 				$r .= '<tr>' . $this->contextLine( $line ) . $this->emptyLine() . $this->contextLine( $line )  . "</tr>\n";
 			} else {
