Supported BBML and Smilies

General Notes back to top

BBML uses “tags” to define what formatting to apply to the text. Tags are special codes surrounded by square brackets (“[]”). “Tag pairs” are used to define what formatting gets applied to what text. In most cases there will be a “start tag” followed by the text to be formatting followed by the “end tag”. End tags are the same codes as the start tags prefixed by a forward slash (“/”). Here’s a sample of the format:

[Tag]Text to be formatted[/tag]

The following general rules apply to all conversions:

Tag Nesting

BBML (like HTML) must be “nested” properly. This is best explained with an example. The first line is not valid BBML and will not be converted while the second line (with properly nested tags) is properly formatted:

Bad: [b]This is [i]some[/b] very fine[/i] sample text.

Good: [b]This is [i]some[/i][/b] [i]very fine[/i] sample text.

BBML tags can be nested in this fashion as deeply as you like. Also BBML tags not case sensitive. In other words [B][/B] and [b][/b] are treated identically.

Many BBML tags have both long, easy to remember versions and shorter, easier to type versions. You cannot mix alternate begin and end tags however. For example “[b]bold text[/bold]” is illegal; either “[b]bold text[/b]” or “[bold]bold text[/bold]” must be used.

Simple Formatting back to top

The basic formatting tags are what you’ll be using most often. They general change the way that text is displayed on screen (bold, italic, etc) or add special formatting rules (indents, monospaced fonts, etc).

Simple Formatting

The following simple formatting tags are available.

StyleThis BBML CodeConverts to
Bold[b][/b] or [bold][/bold]<b>bold</b>
Italic[i][/i] or [italic][/italic]<i>italic</i>
Underlined[u][/u] or [underline][/underline]<u>underlined</u>
Strikethough[s][/s] or [strikethrough][/strikethrough]<s>strikethrough</s>
Superscript[sup][/sup] or [superscript][/superscript]<sup>superscript</sup>
Subscript[sub][/sub] or [subscript][/subscript]<sub>subscript</sub>

Color and Size

Text color and size can be changed with the following tags:

StyleThis BBML Code
Color[color=color][/color]

This tag will set the color of any text within it. Color can be any named color (red, blue, yellow, etc) or a hexidecimal rgb value (for example “#ccffcc”).
Size[size=size][/size]

This tag will set the size (font point size) of any text within it. Size must be a number between 8 and 25.

Special Formatting

There are also four special types of simple formatting available:

StyleThis BBML Code
Quotation[q][/q] or [quote][/quote] or [quote=”author”][/quote]

This tag offsets and indents any text within it as per the HTML <blockquote></blockquote> tag.
Code[code][/code]

Used around blocks of programming code (such as HTML, CFML, JavaScript, etc).
SQL[sql][/sql]

Used around blocks of SQL code, this tag will bold all words reserved in the SQL92 and SQL99 standards such as “SELECT” and “DROP”.
Preformated[pre][/pre] or [preformatted][/preformatted]

Text placed within this tag will be displayed in a monospaced font and all spaces will be honored as per the HTML <pre></pre> tag.

Examples

All simple formatting tags can be used within links, lists, and each other (as long as proper nesting rules are honored). This means that you can have very complex nestings and combinations of formatting. Here are some examples of simple formatting:

BBML CodeResult
This is [b]bold[/b] and this is [i]italic[/i].This is bold and this is italic.
This [b]is a [i][sub]little[/sub] [u]more[/u][/i] complicated[/b]This is a little more complicated
This [i][s]is[/s] [u]even more complicated[/u][/i], [sup]but still perfectly [b]legal[/b][/sup].This is even more complicated, but still perfectly legal.
This [color=blue]blue[/color] and this is [color=#FF0000]Red[/color].This blue and this is Red.
[size=15]This text[/size] is larger than [size=8]this text[/size] but not as large as [size=25]this text[/size].This text is larger than this text but not as large as this text.

Links and Images back to top

There are two kinds of links available in BBML: “normal” links and email links. A normal link is most often used to reference a web page or FTP site but any valid URL (a web address such as “http://www.depressedpress.com”) can be used. An email link is specifically and only used for email address.

Links

Their are two ways create a normal link, simple and complex:

Simple: [link]URL[/link] (or [url]URL[/url])

Complex: [link=URL]Link Label[/link] (or [url=URL]Link Label[/url])

In the same way there are two ways create an email link:

Simple: [email]address[/email]

Complex: [email=address]Label[/email]

In both cases the text between the tags is the visible, clickable part of the link.

Images

Adding images is done with the [img][/img] (or, alternately, with the equivalent [image][/image] tag). You must wrap the full address of the image (for example “http://www.mysite.com/image.jpg”) in the tag like so:

[img]image[/img]

Wrapping and Examples

The image tag can be wrapped in the [link] and [email] tags to make clickable images. However the [img] can not have any tags within it. In addition the [link] and [email] tags cannot wrap each other (although they may wrap basic formatting tags).

Here are some examples of links and images:

BBML CodeResult
[link]http://www.yahoo.com[/link]http://www.yahoo.com
[url=http://www.yahoo.com]Yahoo![/url]Yahoo!
[b][url=http://www.yahoo.com]Yahoo![/url][/b]Yahoo!
[email][email protected][/email][email protected]
[[email protected]]Peter Pan[/email]Peter Pan
[img]http://www.depressedpress.com/Assets/Art/TopArrow.gif[/img]
[link=http://www.depressedpress.com][img]http://www.depressedpress.com/Assets/Art/TopArrow.gif[/img][/link]

Lists back to top

BBML lists come in two basic forms: unordered (or bulleted) lists and ordered (numbered or alphabetized) lists. In both cases the same basic formatting applies. The list tags contain any number of “item” tags (“[*]”). An item tag is placed before each item in the list and does not require and end tag. Here are the types of lists followed by the HTML that they produce:

List Type BBML Code Result
Unordered List [list]
[*]Item One
[*]Item Two
[*]Item Three
[/list]
  • Item One
  • Item Two
  • Item Three
Numbered List [list=1]
[*]Item One
[*]Item Two
[*]Item Three
[/list]
  1. Item One
  2. Item Two
  3. Item Three
Numbered List
(Small Roman Numerals)
[list=i]
[*]Item One
[*]Item Two
[*]Item Three
[/list]
  1. Item One
  2. Item Two
  3. Item Three
Numbered List
(Large Roman Numerals)
[list=I]
[*]Item One
[*]Item Two
[*]Item Three
[/list]
  1. Item One
  2. Item Two
  3. Item Three
Alphabetized List
(Lowercase)
[list=a]
[*]Item One
[*]Item Two
[*]Item Three
[/list]
  1. Item One
  2. Item Two
  3. Item Three
Alphabetized List
(Uppercase)
[list=A]
[*]Item One
[*]Item Two
[*]Item Three
[/list]
  1. Item One
  2. Item Two
  3. Item Three

A list must have at least one item tag (“[*]”) in it to be valid. In addition the there can be no text between the beginning list tag and the first item tag (“[list][*][/list]” is correct while “[list]MyList [*][/list]” will fail).

Lists can be nested together as deeply as you like, but each nested list must be a list item of the outer list. Here’s an example of nesting:

List BBML Code Result
Unordered List [list]
[*]Item One
  [list=1]
  [*]Item One
  [*]Item Two
  [list=I]
  [*]Item One
   [*]Item Two
   [*]Item Three
    [list=i]
    [*]Item One
    [*]Item Two
    [*]Item Three
    [/list]
   [/list]
  [*]Item Three
  [/list]
[*]Item Two
[*]Item Three
[/list]
  • Item One
    1. Item One
    2. Item Two
      1. Item One
      2. Item Two
      3. Item Three
        1. Item One
        2. Item Two
        3. Item Three
    3. Item Three
  • Item Two
  • Item Three

List items may use any formatting or link tags that you wish and may include images. Lists themselves however may only be contained in other list tags.

Smilies

Smilies, also know as “emoticons” are expressive codes appended to text. They are generally seen as small picture turned 90 degrees to the right so that “:^)” is a “smiling face”. There are many different kinds of smilies and some can become very, very elaborate. DP_ParseBBML can convert a subset of these smilies codes into graphical images. Most of the smilies have at least one alternative way to type it and some have several. For our purposes all smilies are made up of three characters however (generally “eyes”, “nose” and “mouth”).

Here is a list of the smilies supported by DP_ParseBBML and the graphic that will replace it:

MeaningWhat to TypeClassic Set
Very Happy😀
Smile🙂
Sad🙁
Surprised😮
Shocked😯
Confused😕
Cool8)
Laughing😆
Mad😡
Razz😛
Embarassed😳
Crying or Very sad😥
Evil or Very Mad👿
Twisted Evil😈
Rolling Eyes🙄
Wink😉
Exclamation
Question
Idea💡
Arrow

Credits back to top

The precediing documentation was written by Jim Davis, author of the DP_ParseBBML coldfusion custom tag.

DP_ParseBBML translates a customized dialect of Bulletin Board Markup Language (“BBML”, originally created for use in the popular Ultimate Bulletin Board™) in to browser-ready HTML markup. BBML is easy to learn and use and gives end users safe access to many of HTML’s formatting controls.

This entire website is focused on one thing: maximizing what you can make running your chiropractic practice. If you're looking to find out why 5,000 doctors in over 16 countries hang on my every word, when it comes to practice building advice then listen to this Special Message:


The bottom line is that this website is where top doctors gather to share killer ideas, tips, and insider tactics. Find out why 8 of the 10 largest practices in the country are Members.

To find out how to get a mountain of Free Practice Building Tools jam-packed with immediately usable secrets worth $1,970 for free... Click Here Now!

<b>FEATURED ARTICLES</b>
Dr. McGregor's $40,000 Christmas Letter Revealed!Dr. McGregor's $40,000 Christmas Letter Revealed!
Here's a sneak peek of a letter that has raked in $40,000 in fat profits in a matter of a few weeks! Dr. McGregor's $40,000 Letter is a model that can be duplicated in virtually every practice, through a process of strategic 'modeling.' Letter revealed... . . . keep reading

Warning: Are YOU Guilty of Not Backing Up Your Office Computers Frequently Enough?Warning: Are YOU Guilty of Not Backing Up Your Office Computers Frequently Enough?
43% of computers crash and their data lost forever. This would be a "situation critical" if it occurs in your chiropractic office. Ben has uncovered a dirt cheap back up service that works automatically... so that you don't have to remember to back up. Source revealed in article . . . keep reading

The Biggest Mistakes Made in Setting Practice Goals that Cost You!The Biggest Mistakes Made in Setting Practice Goals that Cost You!
Ben has worked with over 5,000 DC's around the globe and one of the most powerful things a client can do is to set and prioritize practice goals. It acts as a super-charger and often enables the doctor to increase income 33% or more in a short period of time. However Ben has identified numerous mistakes made in the way doctors set practice goals and this eye opening article reveals 4 common mistakes... . . . keep reading

The Secret Source for Getting Your Own Personalized Handwriting Font to Use in Your Marketing!The Secret Source for Getting Your Own Personalized Handwriting Font to Use in Your Marketing!
Article reveals how to get a font created that perfectly matches your own handwriting, for all sorts of creative marketing uses to grow your practice, including: simulating handwriting on envelopes, thank you notes, postcards, you name it! . . . keep reading

Audio Tutorial: Huge Opportunities in Renewable Monthly Membership Programs in the D.C. Practice!Audio Tutorial: Huge Opportunities in Renewable Monthly Membership Programs in the D.C. Practice!
Audio lesson explains how a client is right now making $23,000 in monthly cash flow, with 3 renewable 'membership programs', that any doctor could mimic. Click here to listen... . . . keep reading



Video Tip of Week: How M.D. Referrals Added $80,000 a Year to This Practice!Video Tip of Week: How M.D. Referrals Added $80,000 a Year to This Practice!
Watch this video of Ben Cummings teaching how a doctor made $80,000 from M.D. referrals. MD's hate chronic back pain cases and will happily refer to DC's if you position yourself properly as this video shows... . . . keep reading

Video Tip of Week: The Support Our Troops Campaign that Made a Doctor $35,000 in 4 Weeks!Video Tip of Week: The Support Our Troops Campaign that Made a Doctor $35,000 in 4 Weeks!
Watch this video of Ben Cummings showing you the Support Our Troops Campaign that made this doctor $35k in 4 weeks; made him a 50:1 ROI; and got him coverage in 6 newspapers and 1 TV interview. Wow!! . . . keep reading

Video Tip of Week: How to Turnkey Your Practice Marketing!Video Tip of Week: How to Turnkey Your Practice Marketing!
Watch this video of Ben Cummings teach and show you examples of how doctors are turnkeying their marketing and taking a "systems approach" to attracting new patients. Understanding this video will make your efforts far more successful! . . . keep reading

Video Sneak Peek: Insiders Tour of a Successful Practice!Video Sneak Peek: Insiders Tour of a Successful Practice!
Want to see what the inside of a successful practice looks like? Watch as this Doctor gives us an insiders tour of its inner workings. This one's a mind expander for sure! Click here to watch video . . . keep reading

Video Tip of the Week: The Boomerang Letter!Video Tip of the Week: The Boomerang Letter!
Video teaches you the Boomerang Letter Strategy - what I consider to be the ultimate reactivation program in existence! See what it looks like, how to use it, and how much it can make you. Great stuff found only on this new video! . . . keep reading

Video Tip of the Week: Making Doctors Famous!Video Tip of the Week: Making Doctors Famous!
This Video is so inspiring! It shows what 5 doctors are doing to get famous and how they're making things happen in a BIG way! Five case studies revealed plus a special update of what's happened since my 72 hour publicity challenge. Exciting stuff on this video! . . . keep reading


Dr. McGregor's $40,000 Christmas Letter Revealed!
By Ben Cummings
Dr. McGregor's $40,000 Christmas Letter Revealed! Here's a sneak peek of a letter that has raked in $40,000 in fat profits in a matter of a few weeks! Dr. McGregor's $40,000 Letter is a model that can be duplicated in virtually every practice, through a process of strategic 'modeling.' Letter revealed... . . . keep reading
Warning: Are YOU Guilty of Not Backing Up Your Office Computers Frequently Enough?
By Ben Cummings
Warning: Are YOU Guilty of Not Backing Up Your Office Computers Frequently Enough? 43% of computers crash and their data lost forever. This would be a "situation critical" if it occurs in your chiropractic office. Ben has uncovered a dirt cheap back up service that works automatically... so that you don't have to remember to back up. Source revealed in article . . . keep reading
The Biggest Mistakes Made in Setting Practice Goals that Cost You!
By Ben Cummings
The Biggest Mistakes Made in Setting Practice Goals that Cost You! Ben has worked with over 5,000 DC's around the globe and one of the most powerful things a client can do is to set and prioritize practice goals. It acts as a super-charger and often enables the doctor to increase income 33% or more in a short period of time. However Ben has identified numerous mistakes made in the way doctors set practice goals and this eye opening article reveals 4 common mistakes... . . . keep reading
The Secret Source for Getting Your Own Personalized Handwriting Font to Use in Your Marketing!
By Ben Cummings
The Secret Source for Getting Your Own Personalized Handwriting Font to Use in Your Marketing! Article reveals how to get a font created that perfectly matches your own handwriting, for all sorts of creative marketing uses to grow your practice, including: simulating handwriting on envelopes, thank you notes, postcards, you name it! . . . keep reading
Audio Tutorial: Huge Opportunities in Renewable Monthly Membership Programs in the D.C. Practice!
By Ben Cummings
Audio Tutorial: Huge Opportunities in Renewable Monthly Membership Programs in the D.C. Practice! Audio lesson explains how a client is right now making $23,000 in monthly cash flow, with 3 renewable 'membership programs', that any doctor could mimic. Click here to listen... . . . keep reading
More HeadlinesMore Headlines   

 Tip of the Week
 Discussion Forum
Discussion Forum
Search Discussion