Skip to content

Commit

Permalink
Allow <source> and <video>, as well as abbr/acronym.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisotura committed Jul 31, 2014
1 parent 26d4bb6 commit 924999d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/bbcode_parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
// HTML

'<a' => TAG_GOOD | TAG_NOAUTOLINK,
'<abbr' => TAG_GOOD,
'<acronym' => TAG_GOOD,
'<b' => TAG_GOOD,
'<big' => TAG_GOOD,
'<br' => TAG_GOOD | TAG_SELFCLOSING,
Expand Down Expand Up @@ -68,6 +70,8 @@
'<wbr' => TAG_GOOD | TAG_SELFCLOSING,

'<audio' => TAG_GOOD,
'<video' => TAG_GOOD,
'<source' => TAG_GOOD | TAG_SELFCLOSING,

// BBCode

Expand Down

0 comments on commit 924999d

Please sign in to comment.