dartiss / code-embed

WordPress plugin to make embedding of code in posts really, really easy
https://wordpress.org/plugins/simple-embed-code/
GNU General Public License v2.0
24 stars 6 forks source link

Spaces Added to Front and Back #31

Open awayshops opened 5 years ago

awayshops commented 5 years ago

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;