aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-12-30 18:32:49 -0800
committerFriendika <info@friendika.com>2010-12-30 18:32:49 -0800
commit9296d178b3696a0cf408d006b7fb9832a3344dcb (patch)
treefa7f18fca6285406d9af097180a91b99baeda13c /include/bbcode.php
parent98dcc195117bab35363c75e14af08858b6dbba3d (diff)
downloadvolse-hubzilla-9296d178b3696a0cf408d006b7fb9832a3344dcb.tar.gz
volse-hubzilla-9296d178b3696a0cf408d006b7fb9832a3344dcb.tar.bz2
volse-hubzilla-9296d178b3696a0cf408d006b7fb9832a3344dcb.zip
html5 video/audio support - still needs multiple source
selection, and check that it isn't blocked by html purifier
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index 7e901bd41..646401ddb 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -77,6 +77,13 @@ function bbcode($Text) {
// Images
// [img]pathtoimage[/img]
$Text = preg_replace("/\[img\](.+?)\[\/img\]/", '<img src="$1">', $Text);
+
+ // html5 video and audio
+
+ $Text = preg_replace("/\[video\](.+?)\[\/video\]/", '<video src="$1" controls="controls" width="425" height="350">$1</video>', $Text);
+
+ $Text = preg_replace("/\[audio\](.+?)\[\/audio\]/", '<audio src="$1" controls="controls">$1</audio>', $Text);
+
// [img=widthxheight]image source[/img]
$Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.+?)\[\/img\]/", '<img src="$3" height="$2" width="$1">', $Text);