There are mods on how to replace words in posts. Or, here is my blurb on how to do it:
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']);
You can just put words in where it says "$link" instead of links