aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2014-05-10 17:28:21 +1000
committerRedMatrix <info@friendica.com>2014-05-10 17:28:21 +1000
commit481b4c21c9ab6e7e6df8f65ef97135fb5807d7fd (patch)
tree3792cb4b82ee3a97a9de1b61acc4ec40e90ee5ea /include
parent7302a3690eadabb592ce0a9dd774ec5e7b2c751f (diff)
parent0e336fc09258e255d8bc01daad703cde11dbcad2 (diff)
downloadvolse-hubzilla-481b4c21c9ab6e7e6df8f65ef97135fb5807d7fd.tar.gz
volse-hubzilla-481b4c21c9ab6e7e6df8f65ef97135fb5807d7fd.tar.bz2
volse-hubzilla-481b4c21c9ab6e7e6df8f65ef97135fb5807d7fd.zip
Merge pull request #453 from unary/bbcode
add support for h1, h2, etc. to bbcode
Diffstat (limited to 'include')
-rw-r--r--include/bbcode.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index 326676b72..17b25c206 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -507,6 +507,30 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
$Text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism","<span style=\"font-size: $1px;\">$2</span>",$Text);
$Text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism","<span style=\"font-size: $1;\">$2</span>",$Text);
}
+ // Check for h1
+ if (strpos($Text,'[h1]') !== false) {
+ $Text = preg_replace("(\[h1\](.*?)\[\/h1\])ism",'<h1>$1</h1>',$Text);
+ }
+ // Check for h2
+ if (strpos($Text,'[h2]') !== false) {
+ $Text = preg_replace("(\[h2\](.*?)\[\/h2\])ism",'<h2>$1</h2>',$Text);
+ }
+ // Check for h3
+ if (strpos($Text,'[h3]') !== false) {
+ $Text = preg_replace("(\[h3\](.*?)\[\/h3\])ism",'<h3>$1</h3>',$Text);
+ }
+ // Check for h4
+ if (strpos($Text,'[h4]') !== false) {
+ $Text = preg_replace("(\[h4\](.*?)\[\/h4\])ism",'<h4>$1</h4>',$Text);
+ }
+ // Check for h5
+ if (strpos($Text,'[h5]') !== false) {
+ $Text = preg_replace("(\[h5\](.*?)\[\/h5\])ism",'<h5>$1</h5>',$Text);
+ }
+ // Check for h6
+ if (strpos($Text,'[h6]') !== false) {
+ $Text = preg_replace("(\[h6\](.*?)\[\/h6\])ism",'<h6>$1</h6>',$Text);
+ }
// Check for centered text
if (strpos($Text,'[/center]') !== false) {
$Text = preg_replace("(\[center\](.*?)\[\/center\])ism","<div style=\"text-align:center;\">$1</div>",$Text);