I've posted this quite a few times and there is a version of it in the modifications area:
hook location - postbit_display_complete
PHP Code:
$word = array(
'word 1',
'word 2',
);
$link = array(
'<a href="link1.php">Link 1</a>',
'<a href="link2.php">Link 2</a>',
);
$this->post['message'] = str_replace($word, $link, $this->post['message']);
(I use str_ireplace, but that's your choice - google the differences.)