URL markup

This commit is contained in:
Savetheinternet 2010-11-03 20:44:51 +11:00
parent 523cf48bae
commit 5f0a3aa146
2 changed files with 6 additions and 3 deletions

View file

@ -125,12 +125,12 @@
$body = str_replace("\r", '', $body);
if(MARKUP_URLS)
$body = preg_replace(URL_REGEX, "<a href=\"$0\">$0</a>", $body);
$body = preg_replace("/(^|\n)([\s]+)?(&gt;)([^\n]+)?($|\n)/m", '$1$2<span class="quote">$3$4</span>$5', $body);
$body = preg_replace("/(^|\n)==(.+?)==\n?/m", "<h2>$2</h2>", $body);
$body = preg_replace("/'''(.+?)'''/m", "<strong>$1</strong>", $body);
$body = preg_replace("/\n/", '<br/>', $body);
}