So I’ve had a deeper look into the code and on line 499 following I found
function do_tweet_post($tweet) {
global $wpdb;
remove_action('publish_post', 'aktt_notify_twitter', 99);
$data = array(
'post_content' => $wpdb->escape(aktt_make_clickable($tweet->tw_text))
Would I be right in just adding something like:
post_content' =>'
<blockquote><p>' . $wpdb->escape(aktt_make_clickable($tweet->tw_text)) . '</blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>'
Looking forward to some guidance ??