Compose tips

Text Formats

BBCode

  • Allowed HTML tags: <a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd><p><img>

    This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.

    For more information see W3C's HTML Specifications or use your favorite search engine to find other sites that explain HTML.

    Tag DescriptionYou TypeYou Get
    Anchors are used to make links to other pages.<a href="https://windsportatlanta.com">WindsportAtlanta.com</a>WindsportAtlanta.com
    Emphasized<em>Emphasized</em>Emphasized
    Strong<strong>Strong</strong>Strong
    Cited<cite>Cited</cite>Cited
    Block quoted<blockquote>Block quoted</blockquote>
    Block quoted
    Coded text used to show programming source code<code>Coded</code>Coded
    Unordered list - use the <li> to begin each list item<ul> <li>First item</li> <li>Second item</li> </ul>
    • First item
    • Second item
    Ordered list - use the <li> to begin each list item<ol> <li>First item</li> <li>Second item</li> </ol>
    1. First item
    2. Second item
    No help provided for tag li.
    Definition lists are similar to other HTML lists. <dl> begins the definition list, <dt> begins the definition term and <dd> begins the definition description.<dl> <dt>First term</dt> <dd>First definition</dd> <dt>Second term</dt> <dd>Second definition</dd> </dl>
    First term
    First definition
    Second term
    Second definition
    No help provided for tag dt.
    No help provided for tag dd.
    By default paragraph tags are automatically added, so use this tag to add additional ones.<p>Paragraph one.</p> <p>Paragraph two.</p>

    Paragraph one.

    Paragraph two.

    No help provided for tag img.

    Most unusual characters can be directly entered without any problems.

    If you do encounter problems, try using HTML character entities. A common example looks like &amp; for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:

    Character DescriptionYou TypeYou Get
    Ampersand&amp;&
    Greater than&gt;>
    Less than&lt;<
    Quotation mark&quot;"
  • Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:

    [quote]This is a simple quote.[/quote]
    is displayed as:

    Quote:
    This is a simple quote.

    Additionally, there is an optional attribute which allows quotes to specify the original author.

    [quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
    is displayed as:

    Mr. Drupal wrote:
    This is a quote with an attribution line.

    Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.

    [quote]I think she says it best...
    [quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
    but you can't argue with
    [quote=Ms. Reply]The more quotes, the merrier.
    Just don't get too carried away.[/quote]
    And I have nothing more to say.[/quote]
    is displayed as:

    Quote:
    I think she says it best...
    Ms. Quotation wrote:
    This is a quote nested within another quote.
    but you can't argue with
    Ms. Reply wrote:
    The more quotes, the merrier. Just don't get too carried away.
    And I have nothing more to say.
  • BBCode Guide

    BBCode allows you to specify formatting rules for your text, even if you are not allowed to use HTML in your posts. BBCode originated from the forum software named PHPBB, and this site has a special implementation of it.

    In BBCode terms, you use "tags" to add formatting to your text. Every tag is enclosed in [ and ] brackets. If you want to mark some region in your text, you need to use an opening tag and a closing tag. Closing tags start with [/, as you will see in the examples below. If you mistype a tag or forget to close it, you will not get the desired formatting.

    Simple text formatting

    BBCode allows you to make some parts of your texts stand out from the context by adding [b]old, [i]talic, [u]nderlined and [s]trikeout formatting to them. The [color], [size] and [font] tags allow you to change the color, size and font of portions of the text you enclose with these tags. Both require a parameter (which colour, how big, what font) that is suffixed to the name of the tag by an equals sign (example below). You should not repeat the parameter in the closing tag!

    You can specify any recognized color name (red, blue, green, white, etc.) or a hexadecimal color value (#CDCDCD, #FFFFFF, etc.) as the parameter of a [color] tag. The [size] tag allows you to set the font size between 6 and 48, 6 being the smallest size. Note that using very large text is considered by many to be annoying, and it is seldom a good idea to try to attract more attention to your post in this way. The [font] tag can be set to any valid font face, such as Arial, Arial Black, Courier, Courier New, Helvetica, Impact, Times New Roman, Verdana, etc.

    usagedisplay
    I [b]need to do[/b] this by the weekend I need to do this by the weekend
    John said that [i]we should[/i] ask her John said that we should ask her
    I [u]would not like to[/u] offend you I would not like to offend you
    Let's correct this [s]mispelled[/s] misspelled word Let's correct this mispelled misspelled word
    Jane was at [color=blue]the coast[/color] Jane was at the coast
    Joe was in [color=#FF0000]the forest[/color] Joe was in the forest
    You said: [size=30]HEY![/size] You said: HEY!
    She said: [font=Courier]What?[/font] She said: What?

    Creating Headings

    Headings are an important part of articles.

    You can use tags [h1] to [h6] to format headings corresponding to HTML's <h1> to <h6>

    Examples:
    [h1]Level 1 Heading[/h1]

    Level 1 Heading

    [h2]Level 2 Heading[/h2]

    Level 2 Heading

    [h3]Level 3 Heading[/h3]

    Level 3 Heading

    [h4]Level 4 Heading[/h4]

    Level 4 Heading

    [h5]Level 5 Heading[/h5]
    Level 5 Heading
    [h6]Level 6 Heading[/h6]
    Level 6 Heading

    Creating links

    You have multiple options to specify links to other destinations in your posts.

    URLs (Uniform Resource Locators) starting with "www" or "ftp" (eg. www.example.com) are automatically recognized and replaced with links. You can also use the [url] tag with a parameter to specify a link with meaningful text to click on. If you use the url tag without the parameter, the enclosed text is assumed to be a URL, and a link is created to that destination.

    Email addresses in posts are also automatically converted to email links. For compatibility with common BBCode implementations, an [email] tag is provided.

    usagedisplay
    For more examples, visit www.example.com For more examples, visit www.example.com
    For more examples, visit http://example.com For more examples, visit http://example.com
    If you have questions ask me at joe@example.com If you have questions ask me at joe@example.com
    If you have questions ask me at [email]joe@example.com[/email] If you have questions ask me at joe@example.com
    We use [url=http://example.com/]the example site[/url] in these examples We use the example site in these examples
    We use [url]http://example.com/[/url] in these examples We use http://example.com/ in these examples

    Anchors

    Many times, you want to refer to a particular part of text from some another part. Using anchors this is possible.

    To use anchors, use [anchor=name]TEXT[/anchor] To refer this at another place, use [url=#name]My old referenece[/url] The name must be same at both places.

    Displaying images

    The [img] tag allows you to display an image in your post. You need to specify a URL to the image, so it needs to be accessible somewhere on the internet. Beware of adding very large images to your text, or the page will load very slowly!

    If you enclose a URL in an [img] tag, then it will be replaced with code to display the image. For example A good screenshot: [img]http://example.com/screenshot.png[/img] will show you the screenshot (if it exists).

    You can also specify the desired display dimensions of the image by adding a dimension parameter to the [img] tag. A good screenshot: [img=640x480]http://example.com/screenshot.png[/img] will display the image in 640x480 (though the full image will be downloaded). Do not use this to show a thumbnail of an image!

    You are free to link an image to an external destination by enclosing the [img] tag with a [url] tag: See [url=http://example.com][img]http://example.com/screenshot.png[/img][/url].

    Google, Wikipedia and Youtube

    To refer to Google and Wikipedia use this:
    [google]The search query[/google], this will output search query as a link http://www.google.com/search?q=The+search+query
    [wikipedia]Wiki Page[/wikipedia], this will output a link as http://http://www.wikipedia.org/wiki/Wiki Page
    To embed Youtube videos, use this:
    [youtube]Video Code i.e. the string that appears after v= in http://www.youtube.com/watch?v=[/youtube], this will embed the video

    Abbreviations and Acronyms

    Using the [abbr] and [acronym] tags, you can create abbreviations and acronyms.
    [abbr=full expansion]shortname as displayed[/abbr]
    [acronym=full expansion]shortname as displayed[/acronym]

    Tables

    Some formatting using tables can be done as below:

    The table code for rows, columns and heads must be enclosed between [table] and [/table]
    Rows can be specified using [row], [r] or [tr]. Just enclose the text between the tag.
    You can also specify the row's background color using the color property of the tag i.e. [row color=#FFFFFF]. It should be in hexadecimal form, the default format for HTML colors.
    Columns can be specified by enclosing the text between [col], [c] or [td]
    Column headings (th tag) can be specified by enclosing the head text between [header], [head] or [h].

    Ordered and unordered lists and indentation

    The simplest list type is the unordered list, which means that there is no numbering applied to the elements. You can make such a list by enclosing the list elements in [list] opening and closing tags. Specify the start of one element with the [*] list element marker, which has no closing tag pair.

    To create an ordered list, you should add a parameter to the [list] list tag specifying what type of ordered list you would like to see. The possible parameters are "i", "I", "1", "a", "A", "c", "d" and "s" which all correspond to the display of the first list element.

    To indent some text, you need to follow this syntax - [indent]TEXT[/indent]. You can use nested indentation to show various indentation levels. [indent]TEXT1
    [indent]TEXT2[/indent]
    [/indent]

    usagedisplay
    I love
     [list]
      [*]Oranges
      [*]Apples
      [*]Bananas
     [/list]
    
    I love
    • Oranges
    • Apples
    • Bananas
    I love
     [list=I]
      [*]Oranges
      [*]Apples
      [*]Bananas
     [/list]
    
    I love
    1. Oranges
    2. Apples
    3. Bananas
    I love
     [list=1]
      [*]Oranges
      [*]Apples
      [*]Bananas
     [/list]
    
    I love
    1. Oranges
    2. Apples
    3. Bananas
     I love
     [indent]computing
     [indent]and I am a geek[/indent]
     [/indent]
     
    I love
    computing
    and I am a geek

    Fixed-width text and block formatting

    You can use the [code] tag to add an inline fixed-width formatted part or to add a block of (usually program) code. If there is any newline present between the opening and closing tags, then a block will be displayed.

    Similarly, the [php] tag can be used to post PHP code. PHP code will automatically be syntax highlighted for easier readability.

    usagedisplay
    Edit your [code]robots.txt[/code] file Edit your robots.txt file
    An HTML title example:
    [code]
    <head>
     <title>Page Title</title>
    </head>
    [/code]
    An HTML title example:
    <head>
     <title>Page Title</title>
    </head>
    Some PHP code:
    [php]
    <?php
    function hello()
    {
      echo "Hello World!";
    }
    ?>
    [/php]
    Some PHP code:
    <?php
    function hello()
    {
      echo
    "Hello World!";
    }
    ?>

    Text and block alignment

    You can also set the alignment of the text by using [left], [right] and [center] tags. The [float] tag can be used to place floating boxes in the text (especially handy for images). You can specify the direction of the floating with [float=left] and [float=right]. The [justify] tag can be used justify text on both sides of the page.

    Other supported tags

    It is possible to quote something that has already been posted, by just putting [quote][/quote] tags around it. To quote a specific person, use something like [quote=John]. Quote tags can be nested.

    The [sub] and [sup] tags can be used to add subscript and superscript text. For example, H[sub]2[/sub]O gives H2O, while X[sup]3[/sup] gives X3.

    The [acronym] tag allow you to identify text as an acronym and provide a description when users move their mouse over the tag. For example, [acronym=Structured Query Language]SQL[/acronym] produces SQL.

    The [abbr] tag allow you to identify text as an abbreviation and provide a description when users move their mouse over the tag. For example, [abbr=World Wide Web]WWW[/abbr] produces WWW.

    The [notag] tags prevent text inside the tags from being parsed. This allows you to give examples of BBcode and not have it converted to HTML. For example: [notag]These [b]tags[/b] are not rendered[/notag] will produce "These [b]tags[/b] are not rendered".

    The [hr] tag draws a horizontal line across the page. Handy for separating chunks of text.

    Using multiple formatting tags

    You can apply more than one formatting specification to a portion of some text. I was at [b][i]the coast[/i][/b] will be rendered as I was at the coast.

    Make sure that you take care of the proper order of the opening and closing tags. You should close the tags in the opposite order in which you opened them. Otherwise you might get very strange rendering results. Also check your post with the preview function before submitting it, in case there are formatting errors due to improper BBCode usage.

  • Allowed BBCode tags:

    Tag descriptionYou TypeYou Get
    [abbr]
    Identifies the content as an abbreviation and displays the full meaning in a tooltip.
    [abbr=et cetera]etc.[/abbr]etc.
    [acronym]
    Puts a tooltip over the contained text, which displays the full meaning of the acronym.
    [acronym=PHP: Hypertext Preprocessor]PHP[/acronym]PHP
    [b]
    Bold text
    [b]bold[/b]bold
    [center]
    Aligns text in the center.
    [center]Centered text[/center]

    Centered text

    [code]
    Formats the content text as code, in Monospace and with a grey box around it. BBCode tags within this tag will not be parsed.
    [code]def fib (n):
    a, b = 0, 1
    for i in xrange(n):
    a, b = b, a + 1
    return a[/code]
    def fib (n): a, b = 0, 1 for i in xrange(n): a, b = b, a + 1 return a
    [color]
    Changes the color. You may enter a color word (red) or a hex code with hash sign (#ff0)
    [color=#f80]Orange text[/color]Orange text
    [define]
    Formats a definition list.
    [define]
    --verbose:This will start the program with full debug messages.
    --in=IN:This will set the input file to IN.
    --out=OUT:This will write output to OUT.
    [/define]
    --verbose
    This will start the program with full debug messages.
    --in=IN
    This will set the input file to IN.
    --out=OUT
    This will write output to OUT.
    [font]
    Changes the font of the text.
    [font=arial]Text[/font]Text
    [h1]
    Level 1 heading. You may want to restrict access to the level 1 and level 2 headings for ordinary users.
    [h1]Title[/h1]

    Title

    [h2]
    Level 2 heading. Use this as the top level on non-node content, as level 1 is used by the site header.
    [h2]Volume[/h2]

    Volume

    [h3]
    Level 3 heading. Use this as the top level within nodes as levels 1 and 2 are used by the site and node title.
    [h3]Chapter[/h3]

    Chapter

    [h4]
    Level 4 heading.
    [h4]Section[/h4]

    Section

    [h5]
    Level 5 heading.
    [h5]Sub-section[/h5]
    Sub-section
    [h6]
    Level 6 heading.
    [h6]Sub-sub-section[/h6]
    Sub-sub-section
    [hr]
    Horizontal divider.
    [hr]
    [i]
    Italic text
    [i]italic[/i]italic
    [img]
    Displays a picture. The size may be set by entering widthxheight as the only option.
    [img=65x73]
    /themes/bartik/logo.png
    [/img]
    IMAGE(
/themes/bartik/logo.png
)
    [justify]
    Aligns text as a justified block.
    [justify]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/justify]

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

    [left]
    Aligns text on the left side.
    [left]Left-aligned text[/left]

    Left-aligned text

    [list]
    Formats a list. ol and ul may be entered as an option, making the list items numbered or non-numbered.
    [list=ol]
    [*]Apples
    [*]Oranges
    [*]Bananas
    [/list]
    1. Apples
    2. Oranges
    3. Bananas
    [node]
    Links to a certain node. Unlike a [url] tag, this is passed through the linking function and returns the alias of the node.
    [node=1]Node #1[/node]Node #1
    [php]
    This colors the syntax of PHP code using the in-built PHP highlighting library.
    [php]<?php
    echo 'Hello World' . 5 . $variable;
    ?>[/php]
    <?php
     
    echo 'Hello World' $variable;
    ?>
    [quote]
    Formats a quote.
    [quote]This text is quoted.[/quote]
    This text is quoted.
    [right]
    Aligns text on the right side.
    [right]Right-aligned text[/right]

    Right-aligned text

    [s]
    Stricken-through text
    [s]this sentence is false[/s]this sentence is false
    [size]
    Changes the text size. This requires the unit (pt, px, em) of the size.
    [size=16pt]Text[/size]Text
    [sub]
    Sets text to be smaller and below the line.
    a[sub]i,j[/sub]ai,j
    [sup]
    Sets text to be set smaller and above the line.
    x[sup]2[/sup]x2
    [u]
    Underlined text
    [u]underlined[/u]underlined
    [url]
    Formats a Hyperlink.
    [url=http://drupal.org]Drupal.org[/url]Drupal.org
    [wikipedia]
    Formats a link to Wikipedia, the free encyclopedia.
    [wikipedia]Drupal[/wikipedia]Drupal
    [youtube]
    Embed a Youtube video.
    [youtube=224x126]rF1X12PE6PY[/youtube]
    [ol]
    Formats a numbered list of items.
    [ol][*] fruit
    [**] apples
    [**] bananas
    [*] animals
    [**] cat
    [**] dog[/ol]
    1. fruit
      1. apples
      2. bananas
    2. animals
      1. cat
      2. dog
    [ul]
    Formats a non-numbered list of items.
    [ul][*] fruit
    [**] apples
    [**] bananas
    [*] animals
    [**] cat
    [**] dog[/ul]
    • fruit
      • apples
      • bananas
    • animals
      • cat
      • dog
    [pagebreak]
    Creates page break marker to adjust the size of the summary on the front page
    [pagebreak]
  • Video Filter

    You may insert videos from popular video sites by using a simple tag [video:URL].

    Examples:

    • Single video:
      [video:http://www.youtube.com/watch?v=uN1qUeId]
    • Random video out of multiple:
      [video:http://www.youtube.com/watch?v=uN1qUeId1,http://www.youtube.com/watch?v=uN1qUeId2]
    • Override default autoplay setting: [video:http://www.youtube.com/watch?v=uN1qUeId autoplay:1]
    • Override default width and height:
      [video:http://www.youtube.com/watch?v=uN1qUeId width:X height:Y]
    • Override default aspect ratio:
      [video:http://www.youtube.com/watch?v=uN1qUeId ratio:4/3]
    • Align the video:
      [video:http://www.youtube.com/watch?v=uN1qUeId align:right]

    Supported sites: DailyMotion, Giphy, Instagram, Vimeo, YouTube, YouTube (Playlist), Facebook.

    Special instructions:

    Some codecs need special input. You'll find those instructions here.
    • Web page addresses and e-mail addresses turn into links automatically.
    • If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
      SmileyAcronyms
      *yes3**yes3* *YES*
      *bomb**bomb* @=
      *lol**lol* *LOL* :-)) :)) =)) +)) :-))) :))) :lol:
      *mail1**mail1* *WRITE* *MAIL*
      *preved**preved* *HELLO* *PREVED* *PRIVET* *HI*
      *shok**shok* =-O =O =-o =0 O_O O_o o_O O_0 o_0 0_O 0_o
      *sorry2**sorry2* *SORRY* :sorry:
      *unknw**unknw* *DONT_KNOW* *UNKNOWN* :HZ: :hz:
      *yahoo**yahoo* *YAHOO* *YAHOO!* :YAHOO: :yahoo:
      *diablo**diablo* ]:-> }:-> ]:> }:> >:-] >:] (6) :diablo: *DIABLO*
      *scratch_one-s_head**scratch_one-s_head* *SCRATCH*
      *music2**music2* [:-} [:} [:-}
      *good**good* :GOOD: :good: *GOOD* *THUMBS_UP*
      *give_rose**give_rose* @}->-- @}-:-- @>}--,-`--- (F) (f) @}->--
      *smile**smile* :-) :) +) =) :smile:
      *ROFL**ROFL* *ROFL* :ROFL: :rofl: :-)))) :-))))) :-)))))) :)))) :))))) :)))))) =)))) =))))) =))))))
      *acute**acute* ;D *ACUTE*
      *cray2**cray2* :'( :'-(
      *man_in_love**man_in_love* *IN_LOVE*
      *stop**stop* *STOP* :stop:
      *aggressive**aggressive* >:o >:O >+O >:o >+o :-@ :angry:
      *i-m_so_happy**i-m_so_happy* *HAPPY* :happy: :HAPPY: :Happy: ^^
      *angel**angel* O:-) O:) O+) O=) 0:-) 0:) 0+) 0=) (A) (a)
      *bad**bad* :-! :! :-~ ;-~ :(~ +(~ =(~ :bad:
      *secret**secret* :-X :-x X: x: :-# :# :secret:
      *crazy**crazy* *CRAZY* :crazy:
      *ok**ok* *OK*
      *blum3**blum3* :-P :P :-p :p +P =P +p =p :-b :b +b =b :tongue:
      *dirol**dirol* 8-) 8) B) :COOL: :cool:
      *sad**sad* :-( :( +( =( :-(( :(( +(( =(( :sad:
      *bye**bye* *BYE*
      *drinks**drinks* *DRINK* :drink:
      *beee**beee* :-\ :-/ :\ :-\
      *new_russian**new_russian* \m/ \M/
      *mosking**mosking* *JOKINGLY* 8P 8p
      *kiss2**kiss2* :-* :* :-{} :{} +{} ={} ^.^ :kiss: *KISS*
      *wink**wink* ;-) ;) ^_~ :wink:
      *nea**nea* *NO* *NO*
      *fool**fool* :-| :| =| :-|
      *pleasantry**pleasantry* *db* :db:
      *boredom**boredom* *TIRED* |-0 :boredom:
      *kiss3**kiss3* *KISSING*
      *biggrin**biggrin* :-D :D +D =D :biggrin:
      *dance4**dance4* *DANCE* :dance:
      *blush**blush* :-[ :[ ;'> ;-. :blush:
      *clapping**clapping* *BRAVO* :BRAVO: :bravo: :clapping:
      *air_kiss**air_kiss* *KISSED*
      *dash1**dash1* *DASH* *WALL*
      *pardon**pardon* *PARDON* =] :PARDON: :pardon:
      *help**help* *HELP*
      *wacko**wacko* %) %-) :-$ :$ :wacko: :WACKO:
    • Both <img> and <iframe> elements are lazy-loaded.

    Filtered HTML

    • Allowed HTML tags: <a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd><p><img>

      This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.

      For more information see W3C's HTML Specifications or use your favorite search engine to find other sites that explain HTML.

      Tag DescriptionYou TypeYou Get
      Anchors are used to make links to other pages.<a href="https://windsportatlanta.com">WindsportAtlanta.com</a>WindsportAtlanta.com
      Emphasized<em>Emphasized</em>Emphasized
      Strong<strong>Strong</strong>Strong
      Cited<cite>Cited</cite>Cited
      Block quoted<blockquote>Block quoted</blockquote>
      Block quoted
      Coded text used to show programming source code<code>Coded</code>Coded
      Unordered list - use the <li> to begin each list item<ul> <li>First item</li> <li>Second item</li> </ul>
      • First item
      • Second item
      Ordered list - use the <li> to begin each list item<ol> <li>First item</li> <li>Second item</li> </ol>
      1. First item
      2. Second item
      No help provided for tag li.
      Definition lists are similar to other HTML lists. <dl> begins the definition list, <dt> begins the definition term and <dd> begins the definition description.<dl> <dt>First term</dt> <dd>First definition</dd> <dt>Second term</dt> <dd>Second definition</dd> </dl>
      First term
      First definition
      Second term
      Second definition
      No help provided for tag dt.
      No help provided for tag dd.
      By default paragraph tags are automatically added, so use this tag to add additional ones.<p>Paragraph one.</p> <p>Paragraph two.</p>

      Paragraph one.

      Paragraph two.

      No help provided for tag img.

      Most unusual characters can be directly entered without any problems.

      If you do encounter problems, try using HTML character entities. A common example looks like &amp; for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:

      Character DescriptionYou TypeYou Get
      Ampersand&amp;&
      Greater than&gt;>
      Less than&lt;<
      Quotation mark&quot;"
    • Allowed BBCode tags:

      Tag descriptionYou TypeYou Get
      [abbr]
      Identifies the content as an abbreviation and displays the full meaning in a tooltip.
      [abbr=et cetera]etc.[/abbr]etc.
      [acronym]
      Puts a tooltip over the contained text, which displays the full meaning of the acronym.
      [acronym=PHP: Hypertext Preprocessor]PHP[/acronym]PHP
      [b]
      Bold text
      [b]bold[/b]bold
      [center]
      Aligns text in the center.
      [center]Centered text[/center]

      Centered text

      [code]
      Formats the content text as code, in Monospace and with a grey box around it. BBCode tags within this tag will not be parsed.
      [code]def fib (n):
      a, b = 0, 1
      for i in xrange(n):
      a, b = b, a + 1
      return a[/code]
      def fib (n): a, b = 0, 1 for i in xrange(n): a, b = b, a + 1 return a
      [color]
      Changes the color. You may enter a color word (red) or a hex code with hash sign (#ff0)
      [color=#f80]Orange text[/color]Orange text
      [define]
      Formats a definition list.
      [define]
      --verbose:This will start the program with full debug messages.
      --in=IN:This will set the input file to IN.
      --out=OUT:This will write output to OUT.
      [/define]
      --verbose
      This will start the program with full debug messages.
      --in=IN
      This will set the input file to IN.
      --out=OUT
      This will write output to OUT.
      [font]
      Changes the font of the text.
      [font=arial]Text[/font]Text
      [h1]
      Level 1 heading. You may want to restrict access to the level 1 and level 2 headings for ordinary users.
      [h1]Title[/h1]

      Title

      [h2]
      Level 2 heading. Use this as the top level on non-node content, as level 1 is used by the site header.
      [h2]Volume[/h2]

      Volume

      [h3]
      Level 3 heading. Use this as the top level within nodes as levels 1 and 2 are used by the site and node title.
      [h3]Chapter[/h3]

      Chapter

      [h4]
      Level 4 heading.
      [h4]Section[/h4]

      Section

      [h5]
      Level 5 heading.
      [h5]Sub-section[/h5]
      Sub-section
      [h6]
      Level 6 heading.
      [h6]Sub-sub-section[/h6]
      Sub-sub-section
      [hr]
      Horizontal divider.
      [hr]
      [i]
      Italic text
      [i]italic[/i]italic
      [img]
      Displays a picture. The size may be set by entering widthxheight as the only option.
      [img=65x73]
      /themes/bartik/logo.png
      [/img]
      IMAGE(
/themes/bartik/logo.png
)
      [justify]
      Aligns text as a justified block.
      [justify]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/justify]

      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

      [left]
      Aligns text on the left side.
      [left]Left-aligned text[/left]

      Left-aligned text

      [list]
      Formats a list. ol and ul may be entered as an option, making the list items numbered or non-numbered.
      [list=ol]
      [*]Apples
      [*]Oranges
      [*]Bananas
      [/list]
      1. Apples
      2. Oranges
      3. Bananas
      [node]
      Links to a certain node. Unlike a [url] tag, this is passed through the linking function and returns the alias of the node.
      [node=1]Node #1[/node]Node #1
      [php]
      This colors the syntax of PHP code using the in-built PHP highlighting library.
      [php]<?php
      echo 'Hello World' . 5 . $variable;
      ?>[/php]
      <?php
       
      echo 'Hello World' $variable;
      ?>
      [quote]
      Formats a quote.
      [quote]This text is quoted.[/quote]
      This text is quoted.
      [right]
      Aligns text on the right side.
      [right]Right-aligned text[/right]

      Right-aligned text

      [s]
      Stricken-through text
      [s]this sentence is false[/s]this sentence is false
      [size]
      Changes the text size. This requires the unit (pt, px, em) of the size.
      [size=16pt]Text[/size]Text
      [sub]
      Sets text to be smaller and below the line.
      a[sub]i,j[/sub]ai,j
      [sup]
      Sets text to be set smaller and above the line.
      x[sup]2[/sup]x2
      [u]
      Underlined text
      [u]underlined[/u]underlined
      [url]
      Formats a Hyperlink.
      [url=http://drupal.org]Drupal.org[/url]Drupal.org
      [wikipedia]
      Formats a link to Wikipedia, the free encyclopedia.
      [wikipedia]Drupal[/wikipedia]Drupal
      [youtube]
      Embed a Youtube video.
      [youtube=224x126]rF1X12PE6PY[/youtube]
      [ol]
      Formats a numbered list of items.
      [ol][*] fruit
      [**] apples
      [**] bananas
      [*] animals
      [**] cat
      [**] dog[/ol]
      1. fruit
        1. apples
        2. bananas
      2. animals
        1. cat
        2. dog
      [ul]
      Formats a non-numbered list of items.
      [ul][*] fruit
      [**] apples
      [**] bananas
      [*] animals
      [**] cat
      [**] dog[/ul]
      • fruit
        • apples
        • bananas
      • animals
        • cat
        • dog
      [pagebreak]
      Creates page break marker to adjust the size of the summary on the front page
      [pagebreak]
    • BBCode Guide

      BBCode allows you to specify formatting rules for your text, even if you are not allowed to use HTML in your posts. BBCode originated from the forum software named PHPBB, and this site has a special implementation of it.

      In BBCode terms, you use "tags" to add formatting to your text. Every tag is enclosed in [ and ] brackets. If you want to mark some region in your text, you need to use an opening tag and a closing tag. Closing tags start with [/, as you will see in the examples below. If you mistype a tag or forget to close it, you will not get the desired formatting.

      Simple text formatting

      BBCode allows you to make some parts of your texts stand out from the context by adding [b]old, [i]talic, [u]nderlined and [s]trikeout formatting to them. The [color], [size] and [font] tags allow you to change the color, size and font of portions of the text you enclose with these tags. Both require a parameter (which colour, how big, what font) that is suffixed to the name of the tag by an equals sign (example below). You should not repeat the parameter in the closing tag!

      You can specify any recognized color name (red, blue, green, white, etc.) or a hexadecimal color value (#CDCDCD, #FFFFFF, etc.) as the parameter of a [color] tag. The [size] tag allows you to set the font size between 6 and 48, 6 being the smallest size. Note that using very large text is considered by many to be annoying, and it is seldom a good idea to try to attract more attention to your post in this way. The [font] tag can be set to any valid font face, such as Arial, Arial Black, Courier, Courier New, Helvetica, Impact, Times New Roman, Verdana, etc.

      usagedisplay
      I [b]need to do[/b] this by the weekend I need to do this by the weekend
      John said that [i]we should[/i] ask her John said that we should ask her
      I [u]would not like to[/u] offend you I would not like to offend you
      Let's correct this [s]mispelled[/s] misspelled word Let's correct this mispelled misspelled word
      Jane was at [color=blue]the coast[/color] Jane was at the coast
      Joe was in [color=#FF0000]the forest[/color] Joe was in the forest
      You said: [size=30]HEY![/size] You said: HEY!
      She said: [font=Courier]What?[/font] She said: What?

      Creating Headings

      Headings are an important part of articles.

      You can use tags [h1] to [h6] to format headings corresponding to HTML's <h1> to <h6>

      Examples:
      [h1]Level 1 Heading[/h1]

      Level 1 Heading

      [h2]Level 2 Heading[/h2]

      Level 2 Heading

      [h3]Level 3 Heading[/h3]

      Level 3 Heading

      [h4]Level 4 Heading[/h4]

      Level 4 Heading

      [h5]Level 5 Heading[/h5]
      Level 5 Heading
      [h6]Level 6 Heading[/h6]
      Level 6 Heading

      Creating links

      You have multiple options to specify links to other destinations in your posts.

      URLs (Uniform Resource Locators) starting with "www" or "ftp" (eg. www.example.com) are automatically recognized and replaced with links. You can also use the [url] tag with a parameter to specify a link with meaningful text to click on. If you use the url tag without the parameter, the enclosed text is assumed to be a URL, and a link is created to that destination.

      Email addresses in posts are also automatically converted to email links. For compatibility with common BBCode implementations, an [email] tag is provided.

      usagedisplay
      For more examples, visit www.example.com For more examples, visit www.example.com
      For more examples, visit http://example.com For more examples, visit http://example.com
      If you have questions ask me at joe@example.com If you have questions ask me at joe@example.com
      If you have questions ask me at [email]joe@example.com[/email] If you have questions ask me at joe@example.com
      We use [url=http://example.com/]the example site[/url] in these examples We use the example site in these examples
      We use [url]http://example.com/[/url] in these examples We use http://example.com/ in these examples

      Anchors

      Many times, you want to refer to a particular part of text from some another part. Using anchors this is possible.

      To use anchors, use [anchor=name]TEXT[/anchor] To refer this at another place, use [url=#name]My old referenece[/url] The name must be same at both places.

      Displaying images

      The [img] tag allows you to display an image in your post. You need to specify a URL to the image, so it needs to be accessible somewhere on the internet. Beware of adding very large images to your text, or the page will load very slowly!

      If you enclose a URL in an [img] tag, then it will be replaced with code to display the image. For example A good screenshot: [img]http://example.com/screenshot.png[/img] will show you the screenshot (if it exists).

      You can also specify the desired display dimensions of the image by adding a dimension parameter to the [img] tag. A good screenshot: [img=640x480]http://example.com/screenshot.png[/img] will display the image in 640x480 (though the full image will be downloaded). Do not use this to show a thumbnail of an image!

      You are free to link an image to an external destination by enclosing the [img] tag with a [url] tag: See [url=http://example.com][img]http://example.com/screenshot.png[/img][/url].

      Google, Wikipedia and Youtube

      To refer to Google and Wikipedia use this:
      [google]The search query[/google], this will output search query as a link http://www.google.com/search?q=The+search+query
      [wikipedia]Wiki Page[/wikipedia], this will output a link as http://http://www.wikipedia.org/wiki/Wiki Page
      To embed Youtube videos, use this:
      [youtube]Video Code i.e. the string that appears after v= in http://www.youtube.com/watch?v=[/youtube], this will embed the video

      Abbreviations and Acronyms

      Using the [abbr] and [acronym] tags, you can create abbreviations and acronyms.
      [abbr=full expansion]shortname as displayed[/abbr]
      [acronym=full expansion]shortname as displayed[/acronym]

      Tables

      Some formatting using tables can be done as below:

      The table code for rows, columns and heads must be enclosed between [table] and [/table]
      Rows can be specified using [row], [r] or [tr]. Just enclose the text between the tag.
      You can also specify the row's background color using the color property of the tag i.e. [row color=#FFFFFF]. It should be in hexadecimal form, the default format for HTML colors.
      Columns can be specified by enclosing the text between [col], [c] or [td]
      Column headings (th tag) can be specified by enclosing the head text between [header], [head] or [h].

      Ordered and unordered lists and indentation

      The simplest list type is the unordered list, which means that there is no numbering applied to the elements. You can make such a list by enclosing the list elements in [list] opening and closing tags. Specify the start of one element with the [*] list element marker, which has no closing tag pair.

      To create an ordered list, you should add a parameter to the [list] list tag specifying what type of ordered list you would like to see. The possible parameters are "i", "I", "1", "a", "A", "c", "d" and "s" which all correspond to the display of the first list element.

      To indent some text, you need to follow this syntax - [indent]TEXT[/indent]. You can use nested indentation to show various indentation levels. [indent]TEXT1
      [indent]TEXT2[/indent]
      [/indent]

      usagedisplay
      I love
       [list]
        [*]Oranges
        [*]Apples
        [*]Bananas
       [/list]
      
      I love
      • Oranges
      • Apples
      • Bananas
      I love
       [list=I]
        [*]Oranges
        [*]Apples
        [*]Bananas
       [/list]
      
      I love
      1. Oranges
      2. Apples
      3. Bananas
      I love
       [list=1]
        [*]Oranges
        [*]Apples
        [*]Bananas
       [/list]
      
      I love
      1. Oranges
      2. Apples
      3. Bananas
       I love
       [indent]computing
       [indent]and I am a geek[/indent]
       [/indent]
       
      I love
      computing
      and I am a geek

      Fixed-width text and block formatting

      You can use the [code] tag to add an inline fixed-width formatted part or to add a block of (usually program) code. If there is any newline present between the opening and closing tags, then a block will be displayed.

      Similarly, the [php] tag can be used to post PHP code. PHP code will automatically be syntax highlighted for easier readability.

      usagedisplay
      Edit your [code]robots.txt[/code] file Edit your robots.txt file
      An HTML title example:
      [code]
      <head>
       <title>Page Title</title>
      </head>
      [/code]
      An HTML title example:
      <head>
       <title>Page Title</title>
      </head>
      Some PHP code:
      [php]
      <?php
      function hello()
      {
        echo "Hello World!";
      }
      ?>
      [/php]
      Some PHP code:
      <?php
      function hello()
      {
        echo
      "Hello World!";
      }
      ?>

      Text and block alignment

      You can also set the alignment of the text by using [left], [right] and [center] tags. The [float] tag can be used to place floating boxes in the text (especially handy for images). You can specify the direction of the floating with [float=left] and [float=right]. The [justify] tag can be used justify text on both sides of the page.

      Other supported tags

      It is possible to quote something that has already been posted, by just putting [quote][/quote] tags around it. To quote a specific person, use something like [quote=John]. Quote tags can be nested.

      The [sub] and [sup] tags can be used to add subscript and superscript text. For example, H[sub]2[/sub]O gives H2O, while X[sup]3[/sup] gives X3.

      The [acronym] tag allow you to identify text as an acronym and provide a description when users move their mouse over the tag. For example, [acronym=Structured Query Language]SQL[/acronym] produces SQL.

      The [abbr] tag allow you to identify text as an abbreviation and provide a description when users move their mouse over the tag. For example, [abbr=World Wide Web]WWW[/abbr] produces WWW.

      The [notag] tags prevent text inside the tags from being parsed. This allows you to give examples of BBcode and not have it converted to HTML. For example: [notag]These [b]tags[/b] are not rendered[/notag] will produce "These [b]tags[/b] are not rendered".

      The [hr] tag draws a horizontal line across the page. Handy for separating chunks of text.

      Using multiple formatting tags

      You can apply more than one formatting specification to a portion of some text. I was at [b][i]the coast[/i][/b] will be rendered as I was at the coast.

      Make sure that you take care of the proper order of the opening and closing tags. You should close the tags in the opposite order in which you opened them. Otherwise you might get very strange rendering results. Also check your post with the preview function before submitting it, in case there are formatting errors due to improper BBCode usage.

    • Video Filter

      You may insert videos from popular video sites by using a simple tag [video:URL].

      Examples:

      • Single video:
        [video:http://www.youtube.com/watch?v=uN1qUeId]
      • Random video out of multiple:
        [video:http://www.youtube.com/watch?v=uN1qUeId1,http://www.youtube.com/watch?v=uN1qUeId2]
      • Override default autoplay setting: [video:http://www.youtube.com/watch?v=uN1qUeId autoplay:1]
      • Override default width and height:
        [video:http://www.youtube.com/watch?v=uN1qUeId width:X height:Y]
      • Override default aspect ratio:
        [video:http://www.youtube.com/watch?v=uN1qUeId ratio:4/3]
      • Align the video:
        [video:http://www.youtube.com/watch?v=uN1qUeId align:right]

      Supported sites: Instagram, Vimeo, YouTube, YouTube (Playlist), Facebook.

      Special instructions:

      Some codecs need special input. You'll find those instructions here.
      • Web page addresses and e-mail addresses turn into links automatically.
      • Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:

        [quote]This is a simple quote.[/quote]
        is displayed as:

        Quote:
        This is a simple quote.

        Additionally, there is an optional attribute which allows quotes to specify the original author.

        [quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
        is displayed as:

        Mr. Drupal wrote:
        This is a quote with an attribution line.

        Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.

        [quote]I think she says it best...
        [quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
        but you can't argue with
        [quote=Ms. Reply]The more quotes, the merrier.
        Just don't get too carried away.[/quote]
        And I have nothing more to say.[/quote]
        is displayed as:

        Quote:
        I think she says it best...
        Ms. Quotation wrote:
        This is a quote nested within another quote.
        but you can't argue with
        Ms. Reply wrote:
        The more quotes, the merrier. Just don't get too carried away.
        And I have nothing more to say.
      • If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
        SmileyAcronyms
        *yes3**yes3* *YES*
        *bomb**bomb* @=
        *lol**lol* *LOL* :-)) :)) =)) +)) :-))) :))) :lol:
        *mail1**mail1* *WRITE* *MAIL*
        *preved**preved* *HELLO* *PREVED* *PRIVET* *HI*
        *shok**shok* =-O =O =-o =0 O_O O_o o_O O_0 o_0 0_O 0_o
        *sorry2**sorry2* *SORRY* :sorry:
        *unknw**unknw* *DONT_KNOW* *UNKNOWN* :HZ: :hz:
        *yahoo**yahoo* *YAHOO* *YAHOO!* :YAHOO: :yahoo:
        *diablo**diablo* ]:-> }:-> ]:> }:> >:-] >:] (6) :diablo: *DIABLO*
        *scratch_one-s_head**scratch_one-s_head* *SCRATCH*
        *music2**music2* [:-} [:} [:-}
        *good**good* :GOOD: :good: *GOOD* *THUMBS_UP*
        *give_rose**give_rose* @}->-- @}-:-- @>}--,-`--- (F) (f) @}->--
        *smile**smile* :-) :) +) =) :smile:
        *ROFL**ROFL* *ROFL* :ROFL: :rofl: :-)))) :-))))) :-)))))) :)))) :))))) :)))))) =)))) =))))) =))))))
        *acute**acute* ;D *ACUTE*
        *cray2**cray2* :'( :'-(
        *man_in_love**man_in_love* *IN_LOVE*
        *stop**stop* *STOP* :stop:
        *aggressive**aggressive* >:o >:O >+O >:o >+o :-@ :angry:
        *i-m_so_happy**i-m_so_happy* *HAPPY* :happy: :HAPPY: :Happy: ^^
        *angel**angel* O:-) O:) O+) O=) 0:-) 0:) 0+) 0=) (A) (a)
        *bad**bad* :-! :! :-~ ;-~ :(~ +(~ =(~ :bad:
        *secret**secret* :-X :-x X: x: :-# :# :secret:
        *crazy**crazy* *CRAZY* :crazy:
        *ok**ok* *OK*
        *blum3**blum3* :-P :P :-p :p +P =P +p =p :-b :b +b =b :tongue:
        *dirol**dirol* 8-) 8) B) :COOL: :cool:
        *sad**sad* :-( :( +( =( :-(( :(( +(( =(( :sad:
        *bye**bye* *BYE*
        *drinks**drinks* *DRINK* :drink:
        *beee**beee* :-\ :-/ :\ :-\
        *new_russian**new_russian* \m/ \M/
        *mosking**mosking* *JOKINGLY* 8P 8p
        *kiss2**kiss2* :-* :* :-{} :{} +{} ={} ^.^ :kiss: *KISS*
        *wink**wink* ;-) ;) ^_~ :wink:
        *nea**nea* *NO* *NO*
        *fool**fool* :-| :| =| :-|
        *pleasantry**pleasantry* *db* :db:
        *boredom**boredom* *TIRED* |-0 :boredom:
        *kiss3**kiss3* *KISSING*
        *biggrin**biggrin* :-D :D +D =D :biggrin:
        *dance4**dance4* *DANCE* :dance:
        *blush**blush* :-[ :[ ;'> ;-. :blush:
        *clapping**clapping* *BRAVO* :BRAVO: :bravo: :clapping:
        *air_kiss**air_kiss* *KISSED*
        *dash1**dash1* *DASH* *WALL*
        *pardon**pardon* *PARDON* =] :PARDON: :pardon:
        *help**help* *HELP*
        *wacko**wacko* %) %-) :-$ :$ :wacko: :WACKO:
      • Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.

      rich text

      • Allowed HTML tags: <a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>

        This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.

        For more information see W3C's HTML Specifications or use your favorite search engine to find other sites that explain HTML.

        Tag DescriptionYou TypeYou Get
        Anchors are used to make links to other pages.<a href="https://windsportatlanta.com">WindsportAtlanta.com</a>WindsportAtlanta.com
        Emphasized<em>Emphasized</em>Emphasized
        Strong<strong>Strong</strong>Strong
        Cited<cite>Cited</cite>Cited
        Block quoted<blockquote>Block quoted</blockquote>
        Block quoted
        Coded text used to show programming source code<code>Coded</code>Coded
        Unordered list - use the <li> to begin each list item<ul> <li>First item</li> <li>Second item</li> </ul>
        • First item
        • Second item
        Ordered list - use the <li> to begin each list item<ol> <li>First item</li> <li>Second item</li> </ol>
        1. First item
        2. Second item
        No help provided for tag li.
        Definition lists are similar to other HTML lists. <dl> begins the definition list, <dt> begins the definition term and <dd> begins the definition description.<dl> <dt>First term</dt> <dd>First definition</dd> <dt>Second term</dt> <dd>Second definition</dd> </dl>
        First term
        First definition
        Second term
        Second definition
        No help provided for tag dt.
        No help provided for tag dd.

        Most unusual characters can be directly entered without any problems.

        If you do encounter problems, try using HTML character entities. A common example looks like &amp; for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:

        Character DescriptionYou TypeYou Get
        Ampersand&amp;&
        Greater than&gt;>
        Less than&lt;<
        Quotation mark&quot;"
      • No HTML tags allowed.
      • BBCode Guide

        BBCode allows you to specify formatting rules for your text, even if you are not allowed to use HTML in your posts. BBCode originated from the forum software named PHPBB, and this site has a special implementation of it.

        In BBCode terms, you use "tags" to add formatting to your text. Every tag is enclosed in [ and ] brackets. If you want to mark some region in your text, you need to use an opening tag and a closing tag. Closing tags start with [/, as you will see in the examples below. If you mistype a tag or forget to close it, you will not get the desired formatting.

        Simple text formatting

        BBCode allows you to make some parts of your texts stand out from the context by adding [b]old, [i]talic, [u]nderlined and [s]trikeout formatting to them. The [color], [size] and [font] tags allow you to change the color, size and font of portions of the text you enclose with these tags. Both require a parameter (which colour, how big, what font) that is suffixed to the name of the tag by an equals sign (example below). You should not repeat the parameter in the closing tag!

        You can specify any recognized color name (red, blue, green, white, etc.) or a hexadecimal color value (#CDCDCD, #FFFFFF, etc.) as the parameter of a [color] tag. The [size] tag allows you to set the font size between 6 and 48, 6 being the smallest size. Note that using very large text is considered by many to be annoying, and it is seldom a good idea to try to attract more attention to your post in this way. The [font] tag can be set to any valid font face, such as Arial, Arial Black, Courier, Courier New, Helvetica, Impact, Times New Roman, Verdana, etc.

        usagedisplay
        I [b]need to do[/b] this by the weekend I need to do this by the weekend
        John said that [i]we should[/i] ask her John said that we should ask her
        I [u]would not like to[/u] offend you I would not like to offend you
        Let's correct this [s]mispelled[/s] misspelled word Let's correct this mispelled misspelled word
        Jane was at [color=blue]the coast[/color] Jane was at the coast
        Joe was in [color=#FF0000]the forest[/color] Joe was in the forest
        You said: [size=30]HEY![/size] You said: HEY!
        She said: [font=Courier]What?[/font] She said: What?

        Creating Headings

        Headings are an important part of articles.

        You can use tags [h1] to [h6] to format headings corresponding to HTML's <h1> to <h6>

        Examples:
        [h1]Level 1 Heading[/h1]

        Level 1 Heading

        [h2]Level 2 Heading[/h2]

        Level 2 Heading

        [h3]Level 3 Heading[/h3]

        Level 3 Heading

        [h4]Level 4 Heading[/h4]

        Level 4 Heading

        [h5]Level 5 Heading[/h5]
        Level 5 Heading
        [h6]Level 6 Heading[/h6]
        Level 6 Heading

        Creating links

        You have multiple options to specify links to other destinations in your posts.

        URLs (Uniform Resource Locators) starting with "www" or "ftp" (eg. www.example.com) are automatically recognized and replaced with links. You can also use the [url] tag with a parameter to specify a link with meaningful text to click on. If you use the url tag without the parameter, the enclosed text is assumed to be a URL, and a link is created to that destination.

        Email addresses in posts are also automatically converted to email links. For compatibility with common BBCode implementations, an [email] tag is provided.

        usagedisplay
        For more examples, visit www.example.com For more examples, visit www.example.com
        For more examples, visit http://example.com For more examples, visit http://example.com
        If you have questions ask me at joe@example.com If you have questions ask me at joe@example.com
        If you have questions ask me at [email]joe@example.com[/email] If you have questions ask me at joe@example.com
        We use [url=http://example.com/]the example site[/url] in these examples We use the example site in these examples
        We use [url]http://example.com/[/url] in these examples We use http://example.com/ in these examples

        Anchors

        Many times, you want to refer to a particular part of text from some another part. Using anchors this is possible.

        To use anchors, use [anchor=name]TEXT[/anchor] To refer this at another place, use [url=#name]My old referenece[/url] The name must be same at both places.

        Displaying images

        The [img] tag allows you to display an image in your post. You need to specify a URL to the image, so it needs to be accessible somewhere on the internet. Beware of adding very large images to your text, or the page will load very slowly!

        If you enclose a URL in an [img] tag, then it will be replaced with code to display the image. For example A good screenshot: [img]http://example.com/screenshot.png[/img] will show you the screenshot (if it exists).

        You can also specify the desired display dimensions of the image by adding a dimension parameter to the [img] tag. A good screenshot: [img=640x480]http://example.com/screenshot.png[/img] will display the image in 640x480 (though the full image will be downloaded). Do not use this to show a thumbnail of an image!

        You are free to link an image to an external destination by enclosing the [img] tag with a [url] tag: See [url=http://example.com][img]http://example.com/screenshot.png[/img][/url].

        Google, Wikipedia and Youtube

        To refer to Google and Wikipedia use this:
        [google]The search query[/google], this will output search query as a link http://www.google.com/search?q=The+search+query
        [wikipedia]Wiki Page[/wikipedia], this will output a link as http://http://www.wikipedia.org/wiki/Wiki Page
        To embed Youtube videos, use this:
        [youtube]Video Code i.e. the string that appears after v= in http://www.youtube.com/watch?v=[/youtube], this will embed the video

        Abbreviations and Acronyms

        Using the [abbr] and [acronym] tags, you can create abbreviations and acronyms.
        [abbr=full expansion]shortname as displayed[/abbr]
        [acronym=full expansion]shortname as displayed[/acronym]

        Tables

        Some formatting using tables can be done as below:

        The table code for rows, columns and heads must be enclosed between [table] and [/table]
        Rows can be specified using [row], [r] or [tr]. Just enclose the text between the tag.
        You can also specify the row's background color using the color property of the tag i.e. [row color=#FFFFFF]. It should be in hexadecimal form, the default format for HTML colors.
        Columns can be specified by enclosing the text between [col], [c] or [td]
        Column headings (th tag) can be specified by enclosing the head text between [header], [head] or [h].

        Ordered and unordered lists and indentation

        The simplest list type is the unordered list, which means that there is no numbering applied to the elements. You can make such a list by enclosing the list elements in [list] opening and closing tags. Specify the start of one element with the [*] list element marker, which has no closing tag pair.

        To create an ordered list, you should add a parameter to the [list] list tag specifying what type of ordered list you would like to see. The possible parameters are "i", "I", "1", "a", "A", "c", "d" and "s" which all correspond to the display of the first list element.

        To indent some text, you need to follow this syntax - [indent]TEXT[/indent]. You can use nested indentation to show various indentation levels. [indent]TEXT1
        [indent]TEXT2[/indent]
        [/indent]

        usagedisplay
        I love
         [list]
          [*]Oranges
          [*]Apples
          [*]Bananas
         [/list]
        
        I love
        • Oranges
        • Apples
        • Bananas
        I love
         [list=I]
          [*]Oranges
          [*]Apples
          [*]Bananas
         [/list]
        
        I love
        1. Oranges
        2. Apples
        3. Bananas
        I love
         [list=1]
          [*]Oranges
          [*]Apples
          [*]Bananas
         [/list]
        
        I love
        1. Oranges
        2. Apples
        3. Bananas
         I love
         [indent]computing
         [indent]and I am a geek[/indent]
         [/indent]
         
        I love
        computing
        and I am a geek

        Fixed-width text and block formatting

        You can use the [code] tag to add an inline fixed-width formatted part or to add a block of (usually program) code. If there is any newline present between the opening and closing tags, then a block will be displayed.

        Similarly, the [php] tag can be used to post PHP code. PHP code will automatically be syntax highlighted for easier readability.

        usagedisplay
        Edit your [code]robots.txt[/code] file Edit your robots.txt file
        An HTML title example:
        [code]
        <head>
         <title>Page Title</title>
        </head>
        [/code]
        An HTML title example:
        <head>
         <title>Page Title</title>
        </head>
        Some PHP code:
        [php]
        <?php
        function hello()
        {
          echo "Hello World!";
        }
        ?>
        [/php]
        Some PHP code:
        <?php
        function hello()
        {
          echo
        "Hello World!";
        }
        ?>

        Text and block alignment

        You can also set the alignment of the text by using [left], [right] and [center] tags. The [float] tag can be used to place floating boxes in the text (especially handy for images). You can specify the direction of the floating with [float=left] and [float=right]. The [justify] tag can be used justify text on both sides of the page.

        Other supported tags

        It is possible to quote something that has already been posted, by just putting [quote][/quote] tags around it. To quote a specific person, use something like [quote=John]. Quote tags can be nested.

        The [sub] and [sup] tags can be used to add subscript and superscript text. For example, H[sub]2[/sub]O gives H2O, while X[sup]3[/sup] gives X3.

        The [acronym] tag allow you to identify text as an acronym and provide a description when users move their mouse over the tag. For example, [acronym=Structured Query Language]SQL[/acronym] produces SQL.

        The [abbr] tag allow you to identify text as an abbreviation and provide a description when users move their mouse over the tag. For example, [abbr=World Wide Web]WWW[/abbr] produces WWW.

        The [notag] tags prevent text inside the tags from being parsed. This allows you to give examples of BBcode and not have it converted to HTML. For example: [notag]These [b]tags[/b] are not rendered[/notag] will produce "These [b]tags[/b] are not rendered".

        The [hr] tag draws a horizontal line across the page. Handy for separating chunks of text.

        Using multiple formatting tags

        You can apply more than one formatting specification to a portion of some text. I was at [b][i]the coast[/i][/b] will be rendered as I was at the coast.

        Make sure that you take care of the proper order of the opening and closing tags. You should close the tags in the opposite order in which you opened them. Otherwise you might get very strange rendering results. Also check your post with the preview function before submitting it, in case there are formatting errors due to improper BBCode usage.

      • Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.
      • Web page addresses and e-mail addresses turn into links automatically.
      • Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:

        [quote]This is a simple quote.[/quote]
        is displayed as:

        Quote:
        This is a simple quote.

        Additionally, there is an optional attribute which allows quotes to specify the original author.

        [quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
        is displayed as:

        Mr. Drupal wrote:
        This is a quote with an attribution line.

        Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.

        [quote]I think she says it best...
        [quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
        but you can't argue with
        [quote=Ms. Reply]The more quotes, the merrier.
        Just don't get too carried away.[/quote]
        And I have nothing more to say.[/quote]
        is displayed as:

        Quote:
        I think she says it best...
        Ms. Quotation wrote:
        This is a quote nested within another quote.
        but you can't argue with
        Ms. Reply wrote:
        The more quotes, the merrier. Just don't get too carried away.
        And I have nothing more to say.
      • If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
        SmileyAcronyms
        *yes3**yes3* *YES*
        *bomb**bomb* @=
        *lol**lol* *LOL* :-)) :)) =)) +)) :-))) :))) :lol:
        *mail1**mail1* *WRITE* *MAIL*
        *preved**preved* *HELLO* *PREVED* *PRIVET* *HI*
        *shok**shok* =-O =O =-o =0 O_O O_o o_O O_0 o_0 0_O 0_o
        *sorry2**sorry2* *SORRY* :sorry:
        *unknw**unknw* *DONT_KNOW* *UNKNOWN* :HZ: :hz:
        *yahoo**yahoo* *YAHOO* *YAHOO!* :YAHOO: :yahoo:
        *diablo**diablo* ]:-> }:-> ]:> }:> >:-] >:] (6) :diablo: *DIABLO*
        *scratch_one-s_head**scratch_one-s_head* *SCRATCH*
        *music2**music2* [:-} [:} [:-}
        *good**good* :GOOD: :good: *GOOD* *THUMBS_UP*
        *give_rose**give_rose* @}->-- @}-:-- @>}--,-`--- (F) (f) @}->--
        *smile**smile* :-) :) +) =) :smile:
        *ROFL**ROFL* *ROFL* :ROFL: :rofl: :-)))) :-))))) :-)))))) :)))) :))))) :)))))) =)))) =))))) =))))))
        *acute**acute* ;D *ACUTE*
        *cray2**cray2* :'( :'-(
        *man_in_love**man_in_love* *IN_LOVE*
        *stop**stop* *STOP* :stop:
        *aggressive**aggressive* >:o >:O >+O >:o >+o :-@ :angry:
        *i-m_so_happy**i-m_so_happy* *HAPPY* :happy: :HAPPY: :Happy: ^^
        *angel**angel* O:-) O:) O+) O=) 0:-) 0:) 0+) 0=) (A) (a)
        *bad**bad* :-! :! :-~ ;-~ :(~ +(~ =(~ :bad:
        *secret**secret* :-X :-x X: x: :-# :# :secret:
        *crazy**crazy* *CRAZY* :crazy:
        *ok**ok* *OK*
        *blum3**blum3* :-P :P :-p :p +P =P +p =p :-b :b +b =b :tongue:
        *dirol**dirol* 8-) 8) B) :COOL: :cool:
        *sad**sad* :-( :( +( =( :-(( :(( +(( =(( :sad:
        *bye**bye* *BYE*
        *drinks**drinks* *DRINK* :drink:
        *beee**beee* :-\ :-/ :\ :-\
        *new_russian**new_russian* \m/ \M/
        *mosking**mosking* *JOKINGLY* 8P 8p
        *kiss2**kiss2* :-* :* :-{} :{} +{} ={} ^.^ :kiss: *KISS*
        *wink**wink* ;-) ;) ^_~ :wink:
        *nea**nea* *NO* *NO*
        *fool**fool* :-| :| =| :-|
        *pleasantry**pleasantry* *db* :db:
        *boredom**boredom* *TIRED* |-0 :boredom:
        *kiss3**kiss3* *KISSING*
        *biggrin**biggrin* :-D :D +D =D :biggrin:
        *dance4**dance4* *DANCE* :dance:
        *blush**blush* :-[ :[ ;'> ;-. :blush:
        *clapping**clapping* *BRAVO* :BRAVO: :bravo: :clapping:
        *air_kiss**air_kiss* *KISSED*
        *dash1**dash1* *DASH* *WALL*
        *pardon**pardon* *PARDON* =] :PARDON: :pardon:
        *help**help* *HELP*
        *wacko**wacko* %) %-) :-$ :$ :wacko: :WACKO:
      • Allowed BBCode tags:

        Tag descriptionYou TypeYou Get
        [abbr]
        Identifies the content as an abbreviation and displays the full meaning in a tooltip.
        [abbr=et cetera]etc.[/abbr]etc.
        [acronym]
        Puts a tooltip over the contained text, which displays the full meaning of the acronym.
        [acronym=PHP: Hypertext Preprocessor]PHP[/acronym]PHP
        [b]
        Bold text
        [b]bold[/b]bold
        [center]
        Aligns text in the center.
        [center]Centered text[/center]

        Centered text

        [code]
        Formats the content text as code, in Monospace and with a grey box around it. BBCode tags within this tag will not be parsed.
        [code]def fib (n):
        a, b = 0, 1
        for i in xrange(n):
        a, b = b, a + 1
        return a[/code]
        def fib (n): a, b = 0, 1 for i in xrange(n): a, b = b, a + 1 return a
        [color]
        Changes the color. You may enter a color word (red) or a hex code with hash sign (#ff0)
        [color=#f80]Orange text[/color]Orange text
        [define]
        Formats a definition list.
        [define]
        --verbose:This will start the program with full debug messages.
        --in=IN:This will set the input file to IN.
        --out=OUT:This will write output to OUT.
        [/define]
        --verbose
        This will start the program with full debug messages.
        --in=IN
        This will set the input file to IN.
        --out=OUT
        This will write output to OUT.
        [font]
        Changes the font of the text.
        [font=arial]Text[/font]Text
        [h1]
        Level 1 heading. You may want to restrict access to the level 1 and level 2 headings for ordinary users.
        [h1]Title[/h1]

        Title

        [h2]
        Level 2 heading. Use this as the top level on non-node content, as level 1 is used by the site header.
        [h2]Volume[/h2]

        Volume

        [h3]
        Level 3 heading. Use this as the top level within nodes as levels 1 and 2 are used by the site and node title.
        [h3]Chapter[/h3]

        Chapter

        [h4]
        Level 4 heading.
        [h4]Section[/h4]

        Section

        [h5]
        Level 5 heading.
        [h5]Sub-section[/h5]
        Sub-section
        [h6]
        Level 6 heading.
        [h6]Sub-sub-section[/h6]
        Sub-sub-section
        [hr]
        Horizontal divider.
        [hr]
        [i]
        Italic text
        [i]italic[/i]italic
        [img]
        Displays a picture. The size may be set by entering widthxheight as the only option.
        [img=65x73]
        /themes/bartik/logo.png
        [/img]
        IMAGE(
/themes/bartik/logo.png
)
        [justify]
        Aligns text as a justified block.
        [justify]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/justify]

        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

        [left]
        Aligns text on the left side.
        [left]Left-aligned text[/left]

        Left-aligned text

        [list]
        Formats a list. ol and ul may be entered as an option, making the list items numbered or non-numbered.
        [list=ol]
        [*]Apples
        [*]Oranges
        [*]Bananas
        [/list]
        1. Apples
        2. Oranges
        3. Bananas
        [node]
        Links to a certain node. Unlike a [url] tag, this is passed through the linking function and returns the alias of the node.
        [node=1]Node #1[/node]Node #1
        [php]
        This colors the syntax of PHP code using the in-built PHP highlighting library.
        [php]<?php
        echo 'Hello World' . 5 . $variable;
        ?>[/php]
        <?php
         
        echo 'Hello World' $variable;
        ?>
        [quote]
        Formats a quote.
        [quote]This text is quoted.[/quote]
        This text is quoted.
        [right]
        Aligns text on the right side.
        [right]Right-aligned text[/right]

        Right-aligned text

        [s]
        Stricken-through text
        [s]this sentence is false[/s]this sentence is false
        [size]
        Changes the text size. This requires the unit (pt, px, em) of the size.
        [size=16pt]Text[/size]Text
        [sub]
        Sets text to be smaller and below the line.
        a[sub]i,j[/sub]ai,j
        [sup]
        Sets text to be set smaller and above the line.
        x[sup]2[/sup]x2
        [u]
        Underlined text
        [u]underlined[/u]underlined
        [url]
        Formats a Hyperlink.
        [url=http://drupal.org]Drupal.org[/url]Drupal.org
        [wikipedia]
        Formats a link to Wikipedia, the free encyclopedia.
        [wikipedia]Drupal[/wikipedia]Drupal
        [youtube]
        Embed a Youtube video.
        [youtube=224x126]rF1X12PE6PY[/youtube]
        [ol]
        Formats a numbered list of items.
        [ol][*] fruit
        [**] apples
        [**] bananas
        [*] animals
        [**] cat
        [**] dog[/ol]
        1. fruit
          1. apples
          2. bananas
        2. animals
          1. cat
          2. dog
        [ul]
        Formats a non-numbered list of items.
        [ul][*] fruit
        [**] apples
        [**] bananas
        [*] animals
        [**] cat
        [**] dog[/ul]
        • fruit
          • apples
          • bananas
        • animals
          • cat
          • dog
        [pagebreak]
        Creates page break marker to adjust the size of the summary on the front page
        [pagebreak]

      Plain text

      • Video Filter

        You may insert videos from popular video sites by using a simple tag [video:URL].

        Examples:

        • Single video:
          [video:http://www.youtube.com/watch?v=uN1qUeId]
        • Random video out of multiple:
          [video:http://www.youtube.com/watch?v=uN1qUeId1,http://www.youtube.com/watch?v=uN1qUeId2]
        • Override default autoplay setting: [video:http://www.youtube.com/watch?v=uN1qUeId autoplay:1]
        • Override default width and height:
          [video:http://www.youtube.com/watch?v=uN1qUeId width:X height:Y]
        • Override default aspect ratio:
          [video:http://www.youtube.com/watch?v=uN1qUeId ratio:4/3]
        • Align the video:
          [video:http://www.youtube.com/watch?v=uN1qUeId align:right]

        Supported sites: Giphy, Instagram, Vimeo, YouTube, YouTube (Playlist), Facebook.

        Special instructions:

        Some codecs need special input. You'll find those instructions here.
        • BBCode Guide

          BBCode allows you to specify formatting rules for your text, even if you are not allowed to use HTML in your posts. BBCode originated from the forum software named PHPBB, and this site has a special implementation of it.

          In BBCode terms, you use "tags" to add formatting to your text. Every tag is enclosed in [ and ] brackets. If you want to mark some region in your text, you need to use an opening tag and a closing tag. Closing tags start with [/, as you will see in the examples below. If you mistype a tag or forget to close it, you will not get the desired formatting.

          Simple text formatting

          BBCode allows you to make some parts of your texts stand out from the context by adding [b]old, [i]talic, [u]nderlined and [s]trikeout formatting to them. The [color], [size] and [font] tags allow you to change the color, size and font of portions of the text you enclose with these tags. Both require a parameter (which colour, how big, what font) that is suffixed to the name of the tag by an equals sign (example below). You should not repeat the parameter in the closing tag!

          You can specify any recognized color name (red, blue, green, white, etc.) or a hexadecimal color value (#CDCDCD, #FFFFFF, etc.) as the parameter of a [color] tag. The [size] tag allows you to set the font size between 6 and 48, 6 being the smallest size. Note that using very large text is considered by many to be annoying, and it is seldom a good idea to try to attract more attention to your post in this way. The [font] tag can be set to any valid font face, such as Arial, Arial Black, Courier, Courier New, Helvetica, Impact, Times New Roman, Verdana, etc.

          usagedisplay
          I [b]need to do[/b] this by the weekend I need to do this by the weekend
          John said that [i]we should[/i] ask her John said that we should ask her
          I [u]would not like to[/u] offend you I would not like to offend you
          Let's correct this [s]mispelled[/s] misspelled word Let's correct this mispelled misspelled word
          Jane was at [color=blue]the coast[/color] Jane was at the coast
          Joe was in [color=#FF0000]the forest[/color] Joe was in the forest
          You said: [size=30]HEY![/size] You said: HEY!
          She said: [font=Courier]What?[/font] She said: What?

          Creating Headings

          Headings are an important part of articles.

          You can use tags [h1] to [h6] to format headings corresponding to HTML's <h1> to <h6>

          Examples:
          [h1]Level 1 Heading[/h1]

          Level 1 Heading

          [h2]Level 2 Heading[/h2]

          Level 2 Heading

          [h3]Level 3 Heading[/h3]

          Level 3 Heading

          [h4]Level 4 Heading[/h4]

          Level 4 Heading

          [h5]Level 5 Heading[/h5]
          Level 5 Heading
          [h6]Level 6 Heading[/h6]
          Level 6 Heading

          Creating links

          You have multiple options to specify links to other destinations in your posts.

          URLs (Uniform Resource Locators) starting with "www" or "ftp" (eg. www.example.com) are automatically recognized and replaced with links. You can also use the [url] tag with a parameter to specify a link with meaningful text to click on. If you use the url tag without the parameter, the enclosed text is assumed to be a URL, and a link is created to that destination.

          Email addresses in posts are also automatically converted to email links. For compatibility with common BBCode implementations, an [email] tag is provided.

          usagedisplay
          For more examples, visit www.example.com For more examples, visit www.example.com
          For more examples, visit http://example.com For more examples, visit http://example.com
          If you have questions ask me at joe@example.com If you have questions ask me at joe@example.com
          If you have questions ask me at [email]joe@example.com[/email] If you have questions ask me at joe@example.com
          We use [url=http://example.com/]the example site[/url] in these examples We use the example site in these examples
          We use [url]http://example.com/[/url] in these examples We use http://example.com/ in these examples

          Anchors

          Many times, you want to refer to a particular part of text from some another part. Using anchors this is possible.

          To use anchors, use [anchor=name]TEXT[/anchor] To refer this at another place, use [url=#name]My old referenece[/url] The name must be same at both places.

          Displaying images

          The [img] tag allows you to display an image in your post. You need to specify a URL to the image, so it needs to be accessible somewhere on the internet. Beware of adding very large images to your text, or the page will load very slowly!

          If you enclose a URL in an [img] tag, then it will be replaced with code to display the image. For example A good screenshot: [img]http://example.com/screenshot.png[/img] will show you the screenshot (if it exists).

          You can also specify the desired display dimensions of the image by adding a dimension parameter to the [img] tag. A good screenshot: [img=640x480]http://example.com/screenshot.png[/img] will display the image in 640x480 (though the full image will be downloaded). Do not use this to show a thumbnail of an image!

          You are free to link an image to an external destination by enclosing the [img] tag with a [url] tag: See [url=http://example.com][img]http://example.com/screenshot.png[/img][/url].

          Google, Wikipedia and Youtube

          To refer to Google and Wikipedia use this:
          [google]The search query[/google], this will output search query as a link http://www.google.com/search?q=The+search+query
          [wikipedia]Wiki Page[/wikipedia], this will output a link as http://http://www.wikipedia.org/wiki/Wiki Page
          To embed Youtube videos, use this:
          [youtube]Video Code i.e. the string that appears after v= in http://www.youtube.com/watch?v=[/youtube], this will embed the video

          Abbreviations and Acronyms

          Using the [abbr] and [acronym] tags, you can create abbreviations and acronyms.
          [abbr=full expansion]shortname as displayed[/abbr]
          [acronym=full expansion]shortname as displayed[/acronym]

          Tables

          Some formatting using tables can be done as below:

          The table code for rows, columns and heads must be enclosed between [table] and [/table]
          Rows can be specified using [row], [r] or [tr]. Just enclose the text between the tag.
          You can also specify the row's background color using the color property of the tag i.e. [row color=#FFFFFF]. It should be in hexadecimal form, the default format for HTML colors.
          Columns can be specified by enclosing the text between [col], [c] or [td]
          Column headings (th tag) can be specified by enclosing the head text between [header], [head] or [h].

          Ordered and unordered lists and indentation

          The simplest list type is the unordered list, which means that there is no numbering applied to the elements. You can make such a list by enclosing the list elements in [list] opening and closing tags. Specify the start of one element with the [*] list element marker, which has no closing tag pair.

          To create an ordered list, you should add a parameter to the [list] list tag specifying what type of ordered list you would like to see. The possible parameters are "i", "I", "1", "a", "A", "c", "d" and "s" which all correspond to the display of the first list element.

          To indent some text, you need to follow this syntax - [indent]TEXT[/indent]. You can use nested indentation to show various indentation levels. [indent]TEXT1
          [indent]TEXT2[/indent]
          [/indent]

          usagedisplay
          I love
           [list]
            [*]Oranges
            [*]Apples
            [*]Bananas
           [/list]
          
          I love
          • Oranges
          • Apples
          • Bananas
          I love
           [list=I]
            [*]Oranges
            [*]Apples
            [*]Bananas
           [/list]
          
          I love
          1. Oranges
          2. Apples
          3. Bananas
          I love
           [list=1]
            [*]Oranges
            [*]Apples
            [*]Bananas
           [/list]
          
          I love
          1. Oranges
          2. Apples
          3. Bananas
           I love
           [indent]computing
           [indent]and I am a geek[/indent]
           [/indent]
           
          I love
          computing
          and I am a geek

          Fixed-width text and block formatting

          You can use the [code] tag to add an inline fixed-width formatted part or to add a block of (usually program) code. If there is any newline present between the opening and closing tags, then a block will be displayed.

          Similarly, the [php] tag can be used to post PHP code. PHP code will automatically be syntax highlighted for easier readability.

          usagedisplay
          Edit your [code]robots.txt[/code] file Edit your robots.txt file
          An HTML title example:
          [code]
          <head>
           <title>Page Title</title>
          </head>
          [/code]
          An HTML title example:
          <head>
           <title>Page Title</title>
          </head>
          Some PHP code:
          [php]
          <?php
          function hello()
          {
            echo "Hello World!";
          }
          ?>
          [/php]
          Some PHP code:
          <?php
          function hello()
          {
            echo
          "Hello World!";
          }
          ?>

          Text and block alignment

          You can also set the alignment of the text by using [left], [right] and [center] tags. The [float] tag can be used to place floating boxes in the text (especially handy for images). You can specify the direction of the floating with [float=left] and [float=right]. The [justify] tag can be used justify text on both sides of the page.

          Other supported tags

          It is possible to quote something that has already been posted, by just putting [quote][/quote] tags around it. To quote a specific person, use something like [quote=John]. Quote tags can be nested.

          The [sub] and [sup] tags can be used to add subscript and superscript text. For example, H[sub]2[/sub]O gives H2O, while X[sup]3[/sup] gives X3.

          The [acronym] tag allow you to identify text as an acronym and provide a description when users move their mouse over the tag. For example, [acronym=Structured Query Language]SQL[/acronym] produces SQL.

          The [abbr] tag allow you to identify text as an abbreviation and provide a description when users move their mouse over the tag. For example, [abbr=World Wide Web]WWW[/abbr] produces WWW.

          The [notag] tags prevent text inside the tags from being parsed. This allows you to give examples of BBcode and not have it converted to HTML. For example: [notag]These [b]tags[/b] are not rendered[/notag] will produce "These [b]tags[/b] are not rendered".

          The [hr] tag draws a horizontal line across the page. Handy for separating chunks of text.

          Using multiple formatting tags

          You can apply more than one formatting specification to a portion of some text. I was at [b][i]the coast[/i][/b] will be rendered as I was at the coast.

          Make sure that you take care of the proper order of the opening and closing tags. You should close the tags in the opposite order in which you opened them. Otherwise you might get very strange rendering results. Also check your post with the preview function before submitting it, in case there are formatting errors due to improper BBCode usage.

        • Allowed BBCode tags:

          Tag descriptionYou TypeYou Get
          [abbr]
          Identifies the content as an abbreviation and displays the full meaning in a tooltip.
          [abbr=et cetera]etc.[/abbr]etc.
          [acronym]
          Puts a tooltip over the contained text, which displays the full meaning of the acronym.
          [acronym=PHP: Hypertext Preprocessor]PHP[/acronym]PHP
          [b]
          Bold text
          [b]bold[/b]bold
          [center]
          Aligns text in the center.
          [center]Centered text[/center]

          Centered text

          [code]
          Formats the content text as code, in Monospace and with a grey box around it. BBCode tags within this tag will not be parsed.
          [code]def fib (n):
          a, b = 0, 1
          for i in xrange(n):
          a, b = b, a + 1
          return a[/code]
          def fib (n): a, b = 0, 1 for i in xrange(n): a, b = b, a + 1 return a
          [color]
          Changes the color. You may enter a color word (red) or a hex code with hash sign (#ff0)
          [color=#f80]Orange text[/color]Orange text
          [define]
          Formats a definition list.
          [define]
          --verbose:This will start the program with full debug messages.
          --in=IN:This will set the input file to IN.
          --out=OUT:This will write output to OUT.
          [/define]
          --verbose
          This will start the program with full debug messages.
          --in=IN
          This will set the input file to IN.
          --out=OUT
          This will write output to OUT.
          [font]
          Changes the font of the text.
          [font=arial]Text[/font]Text
          [h1]
          Level 1 heading. You may want to restrict access to the level 1 and level 2 headings for ordinary users.
          [h1]Title[/h1]

          Title

          [h2]
          Level 2 heading. Use this as the top level on non-node content, as level 1 is used by the site header.
          [h2]Volume[/h2]

          Volume

          [h3]
          Level 3 heading. Use this as the top level within nodes as levels 1 and 2 are used by the site and node title.
          [h3]Chapter[/h3]

          Chapter

          [h4]
          Level 4 heading.
          [h4]Section[/h4]

          Section

          [h5]
          Level 5 heading.
          [h5]Sub-section[/h5]
          Sub-section
          [h6]
          Level 6 heading.
          [h6]Sub-sub-section[/h6]
          Sub-sub-section
          [hr]
          Horizontal divider.
          [hr]
          [i]
          Italic text
          [i]italic[/i]italic
          [img]
          Displays a picture. The size may be set by entering widthxheight as the only option.
          [img=65x73]
          /themes/bartik/logo.png
          [/img]
          IMAGE(
/themes/bartik/logo.png
)
          [justify]
          Aligns text as a justified block.
          [justify]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/justify]

          Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

          [left]
          Aligns text on the left side.
          [left]Left-aligned text[/left]

          Left-aligned text

          [list]
          Formats a list. ol and ul may be entered as an option, making the list items numbered or non-numbered.
          [list=ol]
          [*]Apples
          [*]Oranges
          [*]Bananas
          [/list]
          1. Apples
          2. Oranges
          3. Bananas
          [node]
          Links to a certain node. Unlike a [url] tag, this is passed through the linking function and returns the alias of the node.
          [node=1]Node #1[/node]Node #1
          [php]
          This colors the syntax of PHP code using the in-built PHP highlighting library.
          [php]<?php
          echo 'Hello World' . 5 . $variable;
          ?>[/php]
          <?php
           
          echo 'Hello World' $variable;
          ?>
          [quote]
          Formats a quote.
          [quote]This text is quoted.[/quote]
          This text is quoted.
          [right]
          Aligns text on the right side.
          [right]Right-aligned text[/right]

          Right-aligned text

          [s]
          Stricken-through text
          [s]this sentence is false[/s]this sentence is false
          [size]
          Changes the text size. This requires the unit (pt, px, em) of the size.
          [size=16pt]Text[/size]Text
          [sub]
          Sets text to be smaller and below the line.
          a[sub]i,j[/sub]ai,j
          [sup]
          Sets text to be set smaller and above the line.
          x[sup]2[/sup]x2
          [u]
          Underlined text
          [u]underlined[/u]underlined
          [url]
          Formats a Hyperlink.
          [url=http://drupal.org]Drupal.org[/url]Drupal.org
          [wikipedia]
          Formats a link to Wikipedia, the free encyclopedia.
          [wikipedia]Drupal[/wikipedia]Drupal
          [youtube]
          Embed a Youtube video.
          [youtube=224x126]rF1X12PE6PY[/youtube]
          [ol]
          Formats a numbered list of items.
          [ol][*] fruit
          [**] apples
          [**] bananas
          [*] animals
          [**] cat
          [**] dog[/ol]
          1. fruit
            1. apples
            2. bananas
          2. animals
            1. cat
            2. dog
          [ul]
          Formats a non-numbered list of items.
          [ul][*] fruit
          [**] apples
          [**] bananas
          [*] animals
          [**] cat
          [**] dog[/ul]
          • fruit
            • apples
            • bananas
          • animals
            • cat
            • dog
          [pagebreak]
          Creates page break marker to adjust the size of the summary on the front page
          [pagebreak]
        • If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
          SmileyAcronyms
          *yes3**yes3* *YES*
          *bomb**bomb* @=
          *lol**lol* *LOL* :-)) :)) =)) +)) :-))) :))) :lol:
          *mail1**mail1* *WRITE* *MAIL*
          *preved**preved* *HELLO* *PREVED* *PRIVET* *HI*
          *shok**shok* =-O =O =-o =0 O_O O_o o_O O_0 o_0 0_O 0_o
          *sorry2**sorry2* *SORRY* :sorry:
          *unknw**unknw* *DONT_KNOW* *UNKNOWN* :HZ: :hz:
          *yahoo**yahoo* *YAHOO* *YAHOO!* :YAHOO: :yahoo:
          *diablo**diablo* ]:-> }:-> ]:> }:> >:-] >:] (6) :diablo: *DIABLO*
          *scratch_one-s_head**scratch_one-s_head* *SCRATCH*
          *music2**music2* [:-} [:} [:-}
          *good**good* :GOOD: :good: *GOOD* *THUMBS_UP*
          *give_rose**give_rose* @}->-- @}-:-- @>}--,-`--- (F) (f) @}->--
          *smile**smile* :-) :) +) =) :smile:
          *ROFL**ROFL* *ROFL* :ROFL: :rofl: :-)))) :-))))) :-)))))) :)))) :))))) :)))))) =)))) =))))) =))))))
          *acute**acute* ;D *ACUTE*
          *cray2**cray2* :'( :'-(
          *man_in_love**man_in_love* *IN_LOVE*
          *stop**stop* *STOP* :stop:
          *aggressive**aggressive* >:o >:O >+O >:o >+o :-@ :angry:
          *i-m_so_happy**i-m_so_happy* *HAPPY* :happy: :HAPPY: :Happy: ^^
          *angel**angel* O:-) O:) O+) O=) 0:-) 0:) 0+) 0=) (A) (a)
          *bad**bad* :-! :! :-~ ;-~ :(~ +(~ =(~ :bad:
          *secret**secret* :-X :-x X: x: :-# :# :secret:
          *crazy**crazy* *CRAZY* :crazy:
          *ok**ok* *OK*
          *blum3**blum3* :-P :P :-p :p +P =P +p =p :-b :b +b =b :tongue:
          *dirol**dirol* 8-) 8) B) :COOL: :cool:
          *sad**sad* :-( :( +( =( :-(( :(( +(( =(( :sad:
          *bye**bye* *BYE*
          *drinks**drinks* *DRINK* :drink:
          *beee**beee* :-\ :-/ :\ :-\
          *new_russian**new_russian* \m/ \M/
          *mosking**mosking* *JOKINGLY* 8P 8p
          *kiss2**kiss2* :-* :* :-{} :{} +{} ={} ^.^ :kiss: *KISS*
          *wink**wink* ;-) ;) ^_~ :wink:
          *nea**nea* *NO* *NO*
          *fool**fool* :-| :| =| :-|
          *pleasantry**pleasantry* *db* :db:
          *boredom**boredom* *TIRED* |-0 :boredom:
          *kiss3**kiss3* *KISSING*
          *biggrin**biggrin* :-D :D +D =D :biggrin:
          *dance4**dance4* *DANCE* :dance:
          *blush**blush* :-[ :[ ;'> ;-. :blush:
          *clapping**clapping* *BRAVO* :BRAVO: :bravo: :clapping:
          *air_kiss**air_kiss* *KISSED*
          *dash1**dash1* *DASH* *WALL*
          *pardon**pardon* *PARDON* =] :PARDON: :pardon:
          *help**help* *HELP*
          *wacko**wacko* %) %-) :-$ :$ :wacko: :WACKO:
        • Web page addresses and e-mail addresses turn into links automatically.
        • Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.