Dear Louam,
Change the code to the following so that shortcodes are also processed:
add_shortcode('raw-content', 'raw_content_shortcode');
function raw_content_shortcode() {
global $post;
return wpautop(wptexturize(do_shortcode($post->post_content)));
}
Please let me know if you are satisfied with my answer and if I can help you with any other questions you might have.
Regards,
Caridad