Jump to content
Brewer Fanatic

BBCodes


1992casey
Posted
[rurl=faq.php?mode=bbcode]Basic BBCode Guide[/rurl]

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Recommended Posts

Posted

Abbreviation

[abbr=full term]abbreviation[/abbr]

 

Align text

[align=]text[/align]

Place "center," "left," or "right" after the equal sign.

 

Bold text

text

 

Bullet List

See Creating an Unordered List:

(insert url later)

 

Definition List

[dl]terms and definitions[/dl]

Definition Term

[dt]term[/dt]

Definition Description

[dd]definition or description[/dd]

 

A definition list would look like this:

 

[dl][dt]term[/dt][dd]definition or description[/dd]

[dt]term[/dt][dd]definition or description[/dd]

[dt]term[/dt][dd]definition or description[/dd][/dl]

 

Line breaks make a difference. You may want to preview before posting.

 

Heading 1

[h1]text[/h1]

 

Heading 2

[h2]Text[/h2]

 

Heading 3

[h3]Text[/h3]

 

Italic text

text

 

Line-through

text

 

Numbered List

See Creating an Ordered List:

(insert url later)

 

Sarcasm

[sarcasm]snarky comment[/sarcasm]

This turns text blue and and adds a "Sarcasm" tooltip.

 

Subscript

H2O

 

Superscript

x3 or

x[super]3[/super]

 

Teletype text:

[tt]Message[/tt]

Turns text into a monospace font.

 

Tooltip

Tooltip: [tip=text of tooltip]your content (text or image)[/tip]

Adds a tooltip to an image or some text.

 

Underlined text

text

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Posted

[faqborder]text[/faqborder] Wraps a blue border around our FAQs.

 

[faqhead]text[/faqhead] Sets text size and blue background in FAQ headings.

 

[list-in]text[/list-in] Wrap around a

    to make it inline. (not working well)
     
    [list-nb]
      list items

    [/list-nb] Wrap [list-nb][/list-nb] around a

      to create a list without bullets.
       
      [list-sp]
        list items

[/list-sp] Wrap [list-sp][/list-sp] around a

    to leave some space between list items.

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Posted

[a=][/a] … Links to an anchor point on the page.

 

[ap=][/ap] Sets an anchor point.

 

rework the list stuff below; maybe separate into another post

 

add quote, quote=code, img, url (link)

probably eliminate flash via admin controls

----------------------------------------

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Posted

BBCodes are case-insensitive.

 

[h1]Abbreviation[/h1]Use to display the full text of an abbreviation or acronym in a tooltip.

  • Code:
    [abbr=full term]abbreviation[/abbr]


  • Result: [abbr=Major League Baseball]MLB[/abbr]
     
    Note: Hover over "MLB" to see the tooltip.

 

[h1]Align[/h1]Use to align text. Available values are left, center, and right.

  • Code:
    [align=center]Some text[/align]


  • Result: [align=center]Some text[/align]

 

[h1]Bold text[/h1]Use to make text bold.

  • Code:
    [b]Some text[/b]


  • Result: Some text

 

[h1]Bulleted List[/h1]

  • See [rurl=faq.php?mode=bbcode#f3r0]Creating an Unordered list[/rurl]
  • Result:
    • Item one
    • Item two
    • Item three

 

[h1]Code[/h1]Use to cause BBCodes not to render.

  • Code:
    [code][b][i]Some BBCode[/i][/b]
    [/code]


  • Result:
    [b][i]Some BBCode[/i][/b]


     
    Note: You can disable all BBCodes in a message by checking "Disable BBCode" directly below the post editor. The

    [code]
    [/code]

    BBCode is useful when you want to render some BBCodes, but not others.

 

[h1]Columns=[/h1]Use to put text into columns. Columns will not render in Internet Explorer.

[list-sp]

  • Code:
    [columns=3,20]John Axford
    Zach Braddock
    Frankie De La Cruz
    Tim Dillard
    Marco Estrada
    Michael Fiers
    Yovani Gallardo
    Zack Greinke
    Brandon Kintzler
    Kameron Loe
    Santo Manzanillo
    Shaun Marcum
    Mike McClendon
    Chris Narveson
    Manny Parra
    Wily Peralta
    Amaury Rivas
    Francisco Rodriguez
    Cody Scarpetta
    José Veras
    Randy Wolf[/columns]


  • Result: [columns=3,20]John Axford
    Zach Braddock
    Frankie De La Cruz
    Tim Dillard
    Marco Estrada
    Michael Fiers
    Yovani Gallardo
    Zack Greinke
    Brandon Kintzler
    Kameron Loe
    Santo Manzanillo
    Shaun Marcum
    Mike McClendon
    Chris Narveson
    Manny Parra
    Wily Peralta
    Amaury Rivas
    Francisco Rodriguez
    Cody Scarpetta
    José Veras
    Randy Wolf[/columns]
    Note: The first value in the
    [columns=]

    code is the number of columns you'd like. The second value is the minimum number of pixels between columns.

[/list-sp]

 

[h1]Definition List[/h1][list-sp]

  • Code:
    [dl][dt]Definition Term[/dt][dd]Definition Description[/dd]
    [dt]Definition Term[/dt][dd]Definition Description[/dd][/dl]


  • Result: [dl][dt]Definition Term[/dt][dd]Definition Description[/dd]
    [dt]Definition Term[/dt][dd]Definition Description[/dd][/dl]
    Note: Line breaks make a difference. You may want to preview before posting.

[/list-sp]

[h1]Italic text[/h1]Use to make text italic.

  • Code:
    [i]Some text[/i]


  • Result: Some text

 

[h1]Line-through[/h1]Use to strike (draw a line through) text.

  • Code:
    [s]Some text[/s]


  • Result: Some text

 

[h1]Ordered (numbered) List[/h1]

  • See [rurl=faq.php?mode=bbcode#f3r1]Creating an Ordered list[/rurl]
  • Result:
    1. Item one
    2. Item two
    3. Item three

 

[h1]Preformatted Text[/h1]Use to display text in a monospace font and preserve spacing.

[list-sp]

  • Code: [pre]Year BA OBP SLG OPS OPS+
    2007 .324 .370 .634 1.004 154
    2008 .285 .335 .553 .888 130
    2009 .320 .386 .551 .937 146
    2010 .304 .365 .501 .866 131
    2011 .332 .397 .597 .994 166
    Career .312 .371 .563 .933 145[/pre]


  • Result: [pre]Year BA OBP SLG OPS OPS+
    2007 .324 .370 .634 1.004 154
    2008 .285 .335 .553 .888 130
    2009 .320 .386 .551 .937 146
    2010 .304 .365 .501 .866 131
    2011 .332 .397 .597 .994 166
    Career .312 .371 .563 .933 145[/pre]
    Note: The best way to do this is to draft your layout in a text editor using a monospace font. Spaces work better than tabs.

[/list-sp]

 

[h1]Quote[/h1]Use to offset a block of text as a quotation.

  • Code:
    [quote]A banker is a fellow who lends you his umbrella when the sun is shining, but wants it back the minute it begins to rain.[/quote]


  • Result:
    A banker is a fellow who lends you his umbrella when the sun is shining, but wants it back the minute it begins to rain.

 

[h1]Quote=[/h1]Use to offset a block of text as a quotation and attribute it to its source.

  • Code:
    [quote="Mark Twain"]A banker is a fellow who lends you his umbrella when the sun is shining, but wants it back the minute it begins to rain.[/quote]


  • Result:
    A banker is a fellow who lends you his umbrella when the sun is shining, but wants it back the minute it begins to rain.
    Note: The source after the "=" needs to be placed in quotation marks.

 

[h1]Sarcasm[/h1]Use to turn text blue and add a "Sarcasm" tooltip.

  • Code:
    [sarcasm]snarky comment[/sarcasm]


  • Result: [sarcasm]snarky comment[/sarcasm]

 

[h1]Spoiler[/h1]Use to conceal text until a user clicks.

  • Code:
    [spoiler]Some text[/spoiler]


  • Result:
    Some text

 

[h1]Spoiler=[/h1]Use to conceal text until a user clicks and offer customized information regarding its contents.

  • Code:
    [spoiler=Brewers' Rotation]Zack Greinke, Yovani Gallardo, Shaun Marcum, Randy Wolf, Chris Narveson[/spoiler]


  • Result: [spoiler=Brewers' Rotation]Zack Greinke, Yovani Gallardo, Shaun Marcum, Randy Wolf, Chris Narveson

 

[h1]Subscript[/h1]Use to add an indicator below the line of type.

  • Code:
    H[sub]2[/sub]O


  • Result: H2O

 

[h1]Subscript[/h1]Use to add an indicator above the line of type.

  • Code:
    x[sup]3[/sup]


  • Result: x3

 

[h1]Teletype text[/h1]Use to turn text into a monospace font without preserving spacing.

  • Code:
    [tt]Some text[/tt]


  • Result: [tt]Some text[/tt]

 

[h1]Tooltip[/h1]Use to add a tooltip to an image or some text.

  • Code:
    [tip=text of tooltip]your content (text or image)[/tip]


  • Result: [tip=text of tooltip]your content (text or image)[/tip]
     
    Note: hover over "your content (text or image)" on the "Result" line above to see the tooltip.

 

[h1]Underlined text[/h1]Use to underline text.

  • Code:
    [u]Some text[/u]


  • Result: Some text

 

[h1]URL[/h1]Use to display a URL as a link.

  • Code:
    [url]http://www.brewerfan.net/[/url]


  • Result: http://www.brewerfan.net/
     
    Note: Under normal circumstances, URLs in posts will become clickable automatically. You can disable this behavior in a message by checking "Do not automatically parse URLs" directly below the post editor. The
    [url][/url]

    BBCode is useful when you want to make some URLs clickable, but not others.

 

[h1]URL=[/h1]Use to turn text into a clickable link.

  • Code:
    [url=http://www.brewerfan.net/]Brewerfan.net[/url]


  • Result: Brewerfan.net

 

[h1]Video[/h1]Use to insert video from sites that this BBCode supports.

[list-sp]

  • Code:
    [video]http://www.youtube.com/watch?v=LZ4RgGaQcCA[/video]


  • Result:

     
    Note: Simply place the URL of the video's page between the
    [video][/video]

    tags. Supported sites include blip.tv, break.com, clipiki.ru, collegehumor.com, cnn.com, cnettv.cnet.com, comedycentral.com, dailymotion.com, ebaumsworld.com, espn.go.com, exposureroom.com, facebook.com, funnyordie.com, gamecreds.com, gamespot.com/, gametrailers.com, gamevideos.1up.com, godtube.com, hulu.com, ign.com, keepbusy.net, liveleak.com, megavideo.com, metacafe.com, mlssoccer.com, mpora.com, mtvmusic.com, myspace.com, myvideo.de, rutube.ru, videos.sapo.pt, sevenload.com, singsnap.com, smotri.com, soundcloud.com, southparkstudios.com, tm-tube.com, tu.tv, tudou.com, twitvid.com, ustream.tv, vbox7.com, veoh.com, videobb.com, video.yahoo.com, vidiac.com, vimeo.com, wegame.com, xfire.com, youku.com, youtube.com, youtu.be, and vh1.com.

[/list-sp]

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

  • 2 weeks later...
Posted

For copy/paste:

 

[nospoiler-h1=Displayed text]Hidden text[/nospoiler-h1]

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Posted

[faqborder][faqhead]BREWERFAN.NET BBCodes[/faqhead]

BBCodes are case-insensitive. Additional information can be found in [rurl=faq.php?mode=bbcode]phpBB's BBCode FAQ[/rurl].

[nospoiler-h1=Abbreviation]Use to display the full text of an abbreviation or acronym in a tooltip.

  • Code:
    [abbr=full term]abbreviation[/abbr]


  • Result: [abbr=Major League Baseball]MLB[/abbr]
     
    Note: Hover over "MLB" to see the tooltip.

[/nospoiler-h1] [nospoiler-h1=Align]Use to align text. Available values are left, center, and right.

  • Code:
    [align=center]Some text[/align]


  • Result: [align=center]Some text[/align]

[/nospoiler-h1] [nospoiler-h1=Bold text]Use to make text bold.

  • Code:
    [b]Some text[/b]


  • Result: Some text

[/nospoiler-h1] [nospoiler-h1=Bulleted List]

  • See [rurl=faq.php?mode=bbcode#f3r0]Creating an Unordered list[/rurl]
  • Result:
    • Item one
    • Item two
    • Item three

[/nospoiler-h1] [nospoiler-h1=Code]Use to cause BBCodes not to render.

  • Code:
    [code][b][i]Some BBCode[/i][/b]
    [/code]


  • Result:
    [b][i]Some BBCode[/i][/b]


     
    Note: You can disable all BBCodes in a message by checking "Disable BBCode" directly below the post editor. The

    [code]
    [/code]

    BBCode is useful when you want to render some BBCodes, but not others.

[/nospoiler-h1] [nospoiler-h1=Columns=]Use to put text into columns. Columns will not render in Internet Explorer.

[list-sp]

  • Code:
    [columns=3,20]John Axford
    Zach Braddock
    Frankie De La Cruz
    Tim Dillard
    Marco Estrada
    Michael Fiers
    Yovani Gallardo
    Zack Greinke
    Brandon Kintzler
    Kameron Loe
    Santo Manzanillo
    Shaun Marcum
    Mike McClendon
    Chris Narveson
    Manny Parra
    Wily Peralta
    Amaury Rivas
    Francisco Rodriguez
    Cody Scarpetta
    José Veras
    Randy Wolf[/columns]


  • Result: [columns=3,20]John Axford
    Zach Braddock
    Frankie De La Cruz
    Tim Dillard
    Marco Estrada
    Michael Fiers
    Yovani Gallardo
    Zack Greinke
    Brandon Kintzler
    Kameron Loe
    Santo Manzanillo
    Shaun Marcum
    Mike McClendon
    Chris Narveson
    Manny Parra
    Wily Peralta
    Amaury Rivas
    Francisco Rodriguez
    Cody Scarpetta
    José Veras
    Randy Wolf[/columns]
    Note: The first value in the
    [columns=]

    code is the number of columns you'd like. The second value is the minimum number of pixels between columns.

[/list-sp][/nospoiler-h1] [nospoiler-h1=Definition List]Use to create a list of terms and definitions.[list-sp]

  • Code:
    [dl][dt]Definition Term[/dt][dd]Definition Description[/dd]
    [dt]Definition Term[/dt][dd]Definition Description[/dd][/dl]


  • Result: [dl][dt]Definition Term[/dt][dd]Definition Description[/dd]
    [dt]Definition Term[/dt][dd]Definition Description[/dd][/dl]
    Note: Line breaks make a difference. You may want to preview before posting.

[/list-sp][/nospoiler-h1] [nospoiler-h1=Italic text]Use to make text italic.

  • Code:
    [i]Some text[/i]


  • Result: Some text

[/nospoiler-h1] [nospoiler-h1=Line-through]Use to strike (draw a line through) text.

  • Code:
    [s]Some text[/s]


  • Result: Some text

[/nospoiler-h1] [nospoiler-h1=Ordered (numbered) List]

  • See [rurl=faq.php?mode=bbcode#f3r1]Creating an Ordered list[/rurl]
  • Result:
    1. Item one
    2. Item two
    3. Item three

[/nospoiler-h1] [nospoiler-h1=Preformatted Text]Use to display text in a monospace font and preserve spacing.

[list-sp]

  • Code: [pre]Year BA OBP SLG OPS OPS+
    2007 .324 .370 .634 1.004 154
    2008 .285 .335 .553 .888 130
    2009 .320 .386 .551 .937 146
    2010 .304 .365 .501 .866 131
    2011 .332 .397 .597 .994 166
    Career .312 .371 .563 .933 145[/pre]


  • Result: [pre]Year BA OBP SLG OPS OPS+
    2007 .324 .370 .634 1.004 154
    2008 .285 .335 .553 .888 130
    2009 .320 .386 .551 .937 146
    2010 .304 .365 .501 .866 131
    2011 .332 .397 .597 .994 166
    Career .312 .371 .563 .933 145[/pre]
    Note: The best way to do this is to draft your layout in a text editor using a monospace font. Spaces work better than tabs.

[/list-sp][/nospoiler-h1] [nospoiler-h1=Quote]Use to offset a block of text as a quotation.

  • Code:
    [quote]A banker is a fellow who lends you his umbrella when the sun is shining, but wants it back the minute it begins to rain.[/quote]


  • Result:
    A banker is a fellow who lends you his umbrella when the sun is shining, but wants it back the minute it begins to rain.

[/nospoiler-h1] [nospoiler-h1=Quote=]Use to offset a block of text as a quotation and attribute it to its source.

  • Code:
    [quote="Mark Twain"]A banker is a fellow who lends you his umbrella when the sun is shining, but wants it back the minute it begins to rain.[/quote]


  • Result:
    A banker is a fellow who lends you his umbrella when the sun is shining, but wants it back the minute it begins to rain.
    Note: The source after the "=" needs to be placed in quotation marks.

[/nospoiler-h1] [nospoiler-h1=Sarcasm]Use to turn text blue and add a "Sarcasm" tooltip.

  • Code:
    [sarcasm]snarky comment[/sarcasm]


  • Result: [sarcasm]snarky comment[/sarcasm]

[/nospoiler-h1] [nospoiler-h1=Spoiler]Use to conceal text until a user clicks.

  • Code:
    [spoiler]Some text[/spoiler]


  • Result:
    [divclass=faqspoilerfix]Some text[/divclass]

[/nospoiler-h1] [nospoiler-h1=Spoiler=]Use to conceal text until a user clicks and offer customized information regarding its contents.

  • Code:
    [spoiler=Brewers' Rotation]Zack Greinke, Yovani Gallardo, Shaun Marcum, Randy Wolf, Chris Narveson[/spoiler]


  • Result: [spoiler=Brewers' Rotation][divclass=faqspoilerfix]Zack Greinke, Yovani Gallardo, Shaun Marcum, Randy Wolf, Chris Narveson[/divclass]

[/nospoiler-h1] [nospoiler-h1=Subscript]Use to add an indicator below the line of type.

  • Code:
    H[sub]2[/sub]O


  • Result: H2O

[/nospoiler-h1] [nospoiler-h1=Superscript]Use to add an indicator above the line of type.

  • Code:
    x[sup]3[/sup]


  • Result: x3

[/nospoiler-h1] [nospoiler-h1=Teletype text]Use to turn text into a monospace font without preserving spacing.

  • Code:
    [tt]Some text[/tt]


  • Result: [tt]Some text[/tt]

[/nospoiler-h1] [nospoiler-h1=Tooltip]Use to add a tooltip to an image or some text.

  • Code:
    [tip=text of tooltip]your content (text or image)[/tip]


  • Result: [tip=text of tooltip]your content (text or image)[/tip]
     
    Note: hover over "your content (text or image)" on the "Result" line above to see the tooltip.

[/nospoiler-h1] [nospoiler-h1=Underlined text]Use to underline text.

  • Code:
    [u]Some text[/u]


  • Result: Some text

[/nospoiler-h1] [nospoiler-h1=URL]Use to display a URL as a link.

  • Code:
    [url]http://www.brewerfan.net/[/url]


  • Result: http://www.brewerfan.net/
     
    Note: Under normal circumstances, URLs in posts will become clickable automatically. You can disable this behavior in a message by checking "Do not automatically parse URLs" directly below the post editor. The
    [url][/url]

    BBCode is useful when you want to make some URLs clickable, but not others.

[/nospoiler-h1] [nospoiler-h1=URL=]Use to turn text into a clickable link.

  • Code:
    [url=http://www.brewerfan.net/]Brewerfan.net[/url]


  • Result: Brewerfan.net

[/nospoiler-h1] [nospoiler-h1=Video]Use to insert video from sites that this BBCode supports.

[list-sp]

  • Code:
    [video]http://www.youtube.com/watch?v=LZ4RgGaQcCA[/video]


  • Result:

     
    Note: Simply place the URL of the video's page between the
    [video][/video]

    tags. Supported sites include blip.tv, break.com, clipiki.ru, collegehumor.com, cnn.com, cnettv.cnet.com, comedycentral.com, dailymotion.com, ebaumsworld.com, espn.go.com, exposureroom.com, facebook.com, funnyordie.com, gamecreds.com, gamespot.com/, gametrailers.com, gamevideos.1up.com, godtube.com, hulu.com, ign.com, keepbusy.net, liveleak.com, megavideo.com, metacafe.com, mlssoccer.com, mpora.com, mtvmusic.com, myspace.com, myvideo.de, rutube.ru, videos.sapo.pt, sevenload.com, singsnap.com, smotri.com, soundcloud.com, southparkstudios.com, tm-tube.com, tu.tv, tudou.com, twitvid.com, ustream.tv, vbox7.com, veoh.com, videobb.com, video.yahoo.com, vidiac.com, vimeo.com, wegame.com, xfire.com, youku.com, youtube.com, youtu.be, and vh1.com.

[/list-sp][/nospoiler-h1][/faqborder]

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Posted

[nospoiler-h1=h1, h2, and h3]Use to place headings over sections of a post.

  • Code:
    [h1]Some Text[/h1]


    [h2]Some Text[/h2]


    [h3]Some Text[/h3]


  • Result:
    [h1]Some Text[/h1][h2]Some Text[/h2][h3]Some Text[/h3]

[/nospoiler-h1]

 

Attempt at content revision

 

[nospoiler-h1=h1, h2, and h3]Use to place headings over sections of a post.

  • Code:
    [h1]Some Text[/h1]


    [h2]Some Text[/h2]


    [h3]Some Text[/h3]


  • Result:
    [h1]Some Text[/h1][h2]Some Text[/h2][h3]Some Text[/h3]

[/nospoiler-h1]

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Posted

[nospoiler-h1=FAQ Headings and Borders]Use to prettify FAQs and "official" documents with a heading and border.

  • Code:
    [faqborder][faqhead]BREWERFAN.[color=#F1B217]NET[/color] Fan Forum Etiquette[/faqhead]
    The text of your FAQ.[/faqborder]


  • Result: [faqborder][faqhead]BREWERFAN.NET Fan Forum Etiquette[/faqhead]
    The text of your FAQ.[/faqborder]
     
    Note:
    [color=#F1B217]NET[/color]

    is added to Brewerfan headings to render "NET" in gold. The extra coloring is omitted on LambeauLeap.

[/nospoiler-h1]

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Posted

[a=][/a]

… Links to an anchor point on the page.

 

[ap=][/ap]

Sets an anchor point.

 

 

[nospoiler-h1=Underlined text]Use to underline text.

  • Code:
    [u]Some text[/u]


  • Result: Some text

[/nospoiler-h1]

That’s the only thing Chicago’s good for: to tell people where Wisconsin is.

[align=right]-- Sigmund Snopek[/align]

Archived

This topic is now archived and is closed to further replies.

The Twins Daily Caretaker Fund
The Brewer Fanatic Caretaker Fund

You all care about this site. The next step is caring for it. We’re asking you to caretake this site so it can remain the premier Brewers community on the internet. Included with caretaking is ad-free browsing of Brewer Fanatic.

×
×
  • Create New...