Wiki markup addition and ability to disable/enable it
This commit is contained in:
parent
5fd0d21d56
commit
a4299fe4a6
@ -101,6 +101,8 @@
|
||||
|
||||
// Automatically convert things like "..." to Unicode characters ("<22>")
|
||||
define('AUTO_UNICODE', true, true);
|
||||
// Use some Wiki-like syntax (''em'', '''strong''', ==Heading==, etc)
|
||||
define('WIKI_MARKUP', true, true);
|
||||
// Whether to turn URLs into functional links
|
||||
define('MARKUP_URLS', true, true);
|
||||
define('URL_REGEX', '/' . '(https?|ftp):\/\/' . '([\w\-]+\.)+[a-zA-Z]{2,6}' . '(\/([\w\-~\.#\/?=&;:+%]+))?' . '/', true);
|
||||
|
@ -209,10 +209,13 @@
|
||||
|
||||
if(MARKUP_URLS)
|
||||
$body = preg_replace(URL_REGEX, "<a href=\"$0\">$0</a>", $body);
|
||||
|
||||
$body = preg_replace("/(^|\n)([\s]+)?(>)([^\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);
|
||||
|
||||
if(WIKI_MARKUP) {
|
||||
$body = preg_replace("/(^|\n)==(.+?)==\n?/m", "<h2>$2</h2>", $body);
|
||||
$body = preg_replace("/'''(.+?)'''/m", "<strong>$1</strong>", $body);
|
||||
$body = preg_replace("/''(.+?)''/m", "<em>$1</em>", $body);
|
||||
}
|
||||
$body = preg_replace("/\n/", '<br/>', $body);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user