I simply want to create something like that:
blah blah
I\'ve been trying to do this for a long time though for
You could use some javascript to change elements on the fly.
If you use jQuery:
$( 'pre' ).text( $( 'pre' ).html() );
does the trick.