For anyone looking to do this:
I found a great, really SIMPLE bbcode parser here:
Simple BB Code Parser - Web Tech 101
Its really easy to use.
1. copy the simple_bb_code.php file to the libs/ folder
2. Add the following to link.php
PHP Code:
/* Add this code at the top of link.php, BEFORE the class link { .. } declaration */
require_once('simple_bb_code.php');
/* Find this code */
if($type == "full"){
$smarty->assign('story_content', $this->content );
}
/* replace it with this */
$bb = new Simple_BB_Code();
if($type == "full"){
$smarty->assign('story_content', $bb->parse($this->content) );
}
Thats it! I know have fully functional BBcode parsing.
I'm now working on an attractive text editor for the submission process.