Posted On June 27, 2020

WordPress Plugin Syntax Highlighter Fix

kimconnect 0 comments
blog.KimConnect.com >> Codes >> WordPress Plugin Syntax Highlighter Fix

Source: from a forum poster of this plugin’s Github page.

// Add this to functions.php
// Override the double encoded strings on (a) post save (b) code form Gutenberg blocks (c) shortcodes
function ntz_fix_syntax_highlighter($content)
{
	return preg_replace('/&([^;]+;)/', '&$1', $content);
}

add_filter('content_save_pre', 'ntz_fix_syntax_highlighter');
add_filter('syntaxhighlighter_htmlresult', 'ntz_fix_syntax_highlighter');
add_filter('syntaxhighlighter_precode', 'ntz_fix_syntax_highlighter');
// Add this function to force HTML entity encoding/decoding in PHP to include quotes against its default
function kagg_syntaxhighlighter_precode( $code, $atts, $tag ) {
	if ( 'code' === $tag ) {
		$code = wp_specialchars_decode( $code, ENT_QUOTES );
	}
	return $code;
}
add_filter( 'syntaxhighlighter_precode', 'kagg_syntaxhighlighter_precode', 10, 3 );

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Special Parameter datatype [switch]

# Demo of a simple function to turn lights on and offfunction setLight{ param( [switch]$on,…

PowerShell: Set PasswordNeverExpires on SamAccountName

Quick 1-liner Code $accounts=@( 'orange', 'apple', 'pear', 'dog', 'cat', 'dinosaur', 'chicken', 'cow', 'yomama', 'yodada' )…

HaProxy RDP Forwarding

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp PortNumber = 000001BB frontend fe_rdp_tsc bind 0.0.0.0:443 name rdp_web ssl crt kimconnect.com.pem mode…