Index: application/helpers/textile.php =================================================================== --- application/helpers/textile.php (revision 177) +++ application/helpers/textile.php (working copy) @@ -9,7 +9,20 @@ function do_textile($text) { Env::useLibrary('textile'); $textile = new Textile(); - return $textile->TextileRestricted($text, false, false); + $text = $textile->TextileRestricted($text, false, false); + + // The following searches for strings that look like links and auto-links them + $search = array( + '/(?$1", + " $1" + ); + $text = preg_replace($search,$replace,$text); + + return $text; } // do_textile ?>