Добавляет бордюр вокруг ника в посту. Можно добавить и другие стилевые свойства.

Код:
<!-- Бордюр по клику на ник -->
<style>
.nik {border: 1px solid red;padding: 1px;font-weight: 600;}
</style>
<script>
function to(username)
{insert('[class]' + username + '[/class]' + ', ');}
$(function(){
$('.post-content:contains("[class")').each(function(){
var htmlspan = $(this).html().replace(/\[class]([^`]*?)\[\/class\]/gi, "<span class='nik'>$1</span>");
$(this).html(htmlspan)
});
});
</script>

Ставить НТМЛ низ.