code-embed icon indicating copy to clipboard operation
code-embed copied to clipboard

Spaces Added to Front and Back

Open awayshops opened this issue 5 years ago • 0 comments

Work around starts at add-embeds.php line 96

		$saved_html = $html;
		// Build the string to search for

		$search = $options['opening_ident'] . $options['keyword_ident'] . $full_suffix . $options['closing_ident'];

		// Build the string of code to replace with

		//BUG!: Adds spaces to front and back
		//$replace = ce_generate_code( $html, $responsive, $max_width, $options['debug'] );
		$replace = $saved_html;

awayshops avatar Jun 05 '19 22:06 awayshops