friendica/doc/BBCode.md

3.3 KiB

Friendica BBCode tags reference

Inline

[b]bold[/b]
: bold
[i]italic[/i]
: italic
[u]underlined[/u]
: underlined
[s]strike[/s]
: strike
[color=red]red[/color]
: red
[url=http://www.friendica.com]Friendica[/url]
: Friendica
[img]http://friendica.com/sites/default/files/friendika-32.png[/img]
: Immagine/foto
[size=xx-small]small text[/size]
: small text
[size=xx-large]big text[/size]
: big text
[size=20]exact size[/size] (size can be any number, in pixel)
: exact size

Block

[code]code[/code]

code

 

[quote]quote[/quote]
quote

 

[quote=Author]Author? Me? No, no, no...[/quote]

Author wrote:

Author? Me? No, no, no...

 

[center]centered text[/center]
centered text

 

Table

[table border=1]
 [tr] 
   [th]Tables now[/th]
 [/tr]
 [tr]
   [td]Have headers[/td]
 [/tr]
[/table]
Tables now
Have headers

 

List

[list]
 [*] First list element
 [*] Second list element
[/list]
  • First list element
  • Second list element

[list] is equivalent to [ul] (unordered list).

[ol] can be used instead of [list] to show an ordered list:

[ol]
 [*] First list element
 [*] Second list element
[/ol]
  • First list element
  • Second list element

For more options on ordered lists, you can define the style of numeration on [list] argument:

[list=1]
: decimal
[list=i]
: lover case roman
[list=I]
: upper case roman
[list=a]
: lover case alphabetic
[list=A] 
: upper case alphabetic

Embed

You can embed video, audio and more in a message.

[video]url[/video]
[audio]url[/audio]

Where url can be an url to youtube, vimeo, soundcloud, or other sites wich supports oembed or opengraph specifications. url can be also full url to an ogg file. HTML5 tag will be used to show it.

[url]*url*[/url]

If url supports oembed or opengraph specifications the embedded object will be shown (eg, documents from scribd). Page title with a link to url will be shown.

Special

If you need to put literal bbcode in a message, [noparse], [nobb] or [pre] are used to escape bbcode:

[noparse][b]bold[/b][/noparse]
: [b]bold[/b]