]> git.mxchange.org Git - friendica.git/blob - wip/bbcodemaster
acl stuff
[friendica.git] / wip / bbcodemaster
1 http://docs.simplemachines.org/index.php?topic=57.0
2
3
4 Button Usage Description 
5  [b]text[/b] Makes text bold. 
6  [i]text[/i] Makes text italicized. 
7  [u]text[/u] Underlines text. 
8  [s]text[/s] Strikes out text. 
9  [glow=red,2,50]glow[/glow] Adds a glowing effect to text. This BBCode only works with MS Internet Explorer. This is not a standard feature in any other browser. 
10  [shadow=red,left]shadow[/shadow] Adds a shadow effect to text. This BBCode only works with MS Internet Explorer. This is not a standard feature in any other browser. 
11  [move]text[/move] Makes the text inside move in a marquee. 
12  [pre]text[/pre] Preformats enclosed text. 
13  [left]left align[/left] Aligns enclosed items to the left. 
14  [center]centered[/center] Aligns enclosed items to the center. 
15  [right]right align[/right] Aligns enclosed items to the right. 
16  [hr] Inserts a horizontal rule into a Post or PM. Note there is no closing tag. 
17  [size=10pt]font size[/size] Adjusts the font size of the enclosed text. 
18  [font=Verdana]font face[/font] Used to change the font face of the enclosed text. 
19  [flash=200,200]http://somesite/somefile.swf[/flash] Inserts a link to an animated flash file in .swf format. Please be cautious when enabling this BBCode in your forum, since it may be a security risk. 
20  [img]http://somesite/image.jpg[/img] Inserts an image into a Post or personal message. 
21  [url]http://somesite/[/url]
22 or [url=http://somesite/]Site Name[/url] Formats a URL in a Post or personal message. 
23  [email]someone@somesite[/email]
24 or [email=someone@somesite]Somename[/email] Formats an email address in a Post or personal message. 
25  [ftp]ftp://somesite[/ftp]
26 or [ftp=ftp://somesite]somesite[/ftp] Formats an FTP address in a Post or personal message. 
27  [sup]text[/sup] Formats enclosed text as a superscript. 
28  [sub]text[/sub] Formats enclosed text as a subscript. 
29  [tt]text[/tt] Formats enclosed text in teletype format. 
30  [code]code[/code] Used to insert a selection of code into a Personal message or post. 
31  [quote]text[/quote] or
32 [quote=Author link=http://somesite/]text[/quote] Places enclosed text in a quote box. 
33  [list]
34 [li]SMF[/li]
35 [li]YaBB SE[/li]
36 [/list]
37 You can also use the following:
38 [list]
39 [o]circle
40 [O]circle
41 [0]circle
42 [*]disc
43 [@]disc
44 [+]square
45 [x]square
46 [#]square
47 [/list] Inserts items in list format. 
48
49
50
51 For the following 3 tags: they have to be used exactly like their HTML equivalent.This is a table. 
52  [table][/table] Inserts a table. It can't be used alone, or it has no sense! 
53  [tr][/tr] Inserts a row into a table. This BBCode can't be used alone. 
54  [td][/td] Inserts a column into a table. This BBCode can't be used alone. 
55
56 BBCode without buttons on the interface.
57 Usage Description 
58 [abbr=exemlpi gratia]eg[/abbr] Displays the full expression for the abbreviation on mouseover. 
59 [acronym=Simple Machines Forum]SMF[/acronym] Displays the full expression for the acronym on mouseover. 
60 [html]<br />[/html] Parses HTML code. (Only Admins can use this) 
61 [nobbc] [/nobbc] Ignores bbcode formatting 
62 [time]1132812640[/time] Converts a Unix Timestamp into a time recognizable by people. 
63 [iurl]http://somesite/[/iurl] Makes a link that opens in the same window. 
64 [anchor=test]Test[/anchor] [url=#test]Link to anchor[/url] 
65  
66  
67
68
69
70
71 act me.
72 Introduction
73 This free tool allows you to easily convert BBCode formatted text (such as forum posts) to standard HTML. Unlike some converters, this will generate proper paragraph tags (instead of just using a lot of line breaks), and it utilizes CSS declarations for font sizes, color, etc. instead of their depreciated HTML tag counterparts. There are several options available, and a list of supported tags can be found below.
74 Enter BBCode to convert to HTML
75
76 Conversion Options
77 Use filenames for image alt text
78 Close tags properly for XHTML
79 Links open in new window (target="_blank")
80 Ignore color declarations
81 Ignore font type and size declarations
82 Protect email addresses (userATdomainDOTcom)
83 Supported BBCode Tags
84
85     *
86       Bold
87       [b]Hello[/b]
88     *
89       Underlined
90       [u]Hello[/u]
91     *
92       Italics
93       [i]Hello[/i]
94     *
95       Strikethrough
96       [s]Hello[/s]
97     *
98       Forced Linebreak
99       [br]
100     *
101       Colors
102       [color=red]Hello[/color]
103     *
104        
105       [color=#FF0000]Hello[/color]
106     *
107       Font Size
108       [size=9]Hello[/size]
109     *
110       Font Type
111       [font=Verdana]Hello[/font]
112     *
113       Alignment
114       [align=left]left aligned text[/align]
115     *
116        
117       [align=center]centered text[/align]
118     *
119        
120       [center]centered text[/center]
121     *
122        
123       [align=right]right aligned text[/align]
124     *
125       Quotes
126       [quote]Hello[/quote]
127     *
128        
129       [quote="Name"]Hello[/quote]
130     *
131        
132       [quote=Name]Hello[/quote]
133     *
134       Code
135       [code]Hello[/code] (text between code tags is not modified)
136     *
137       Unordered Lists
138       [list] [*]Red [*]Blue [*]Yellow [/list]
139     *
140       Ordered Lists
141       [list=1] [*]Red [*]Blue [*]Yellow [/list]
142     *
143        
144       [list=a] [*]Red [*]Blue [*]Yellow [/list]
145     *
146       Links
147       [url]http://www.example.com/[/url]
148     *
149        
150       [url=http://www.example.com/]Example[/url]
151     *
152       Email
153       [email]user@domain.com[/email]
154     *
155        
156       [email=user@domain.com]email me[/email]
157     *
158       Images
159       [img]http://domain.com/image.jpg[/img]