Closed (fixed)
Project:
Bbcode
Version:
5.x-1.x-dev
Component:
BBCode Tags
Priority:
Minor
Category:
Feature request
Assigned:
Reporter:
Created:
17 Jan 2007 at 10:59 UTC
Updated:
4 Apr 2007 at 08:34 UTC
Is there a way to create custom bbcode tags? Thanks!
Comments
Comment #1
naudefj commentedUnfortunately not (see the TODO section of the README file).
What tags do you want to add?
Comment #2
pnikosis commentedFor example, a youtube tag, like [youtube]Y70aJn7fb9Q[/youtube] or using it with the Hovertips module for [Hover="hover this"]some text[/hover] :)
Great module by the way, I love it :)
Comment #3
naudefj commentedIf you send me the HTML for these tags I will send you the code.
Comment #4
pnikosis commentedThanks a lot, for example for youtube:
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/Y70aJn7fb9Q"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Y70aJn7fb9Q" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>Where Y70aJn7fb9Q is the movie ID
For Google Video:
Where 3636478429299171266 is the movie ID
(I prefer using this than the video module, because this way I can let users in the forums post videos with bbcode)
Or in the case for the hovertips and clicktips plugin (http://drupal.org/project/hovertip):
or
Thanks a lot!
Comment #5
Xabi commentedCould this be done not based on video IDs, but un video URLs? Video IDs are a bad approach from the user side. It's better to paste the full URL into the bbcode and then transform it to a valid embed code.
Comment #6
naudefj commentedTo add a youtube tag, add this code to your bbcode-filter.inc file:
The tooltip and clicktips would be more difficult to add as it required JavaScript coding as well.
Comment #7
pnikosis commentedGreat, thanks!
I'll use this as an example to add more tags if I need to :)
Comment #8
naudefj commentedGreat - that is the spirit!
When done, please post your expressions here. Other people would also be able to benefit from them.
Comment #9
(not verified) commentedComment #10
hanief84 commentedCool! youTube filter there! Thumbs UP!