Хорошо, каковы дальнейшие действия?
Я вставил ещё такое:
<script language="javascript">
$('.post-content p a[rel="nofollow"]').map(function(){
if($(this).find('.postimg').length)return;
var End, link = $(this).attr('href').replace(/^.+?click.php\?/i,'');
if (/\.jpg|\.png|\.gif/.test(link)){$(this).html('<br><img src="'+link+'" >');
}
if(link.indexOf('.mp3')!= -1) {$(this).replaceWith('<br /><audio controls><source src="'+link+'" type="audio/mpeg"></audio>' );
}
if(link.indexOf('youtu')!= -1) {End = link.slice(link.indexOf('?v=') +3);
$(this).replaceWith('<br /><iframe class="youtube-player" src="http://www.youtube.com/embed/'+End+'" frameborder="0" allowfullscreen="true" width="480" height="284"></iframe>');
}
if(link.indexOf('coub.com')!= -1) {End = link.slice(link.indexOf('view/') +5);
$(this).replaceWith('<br /><iframe src="http://coub.com/embed/'+End+'" frameborder="0" allowfullscreen="true" width="480" height="284"></iframe>');
}});
</script>
Больше ничего для Куба я не нашёл.