vB Code |
vB code is a set of tags based on the HTML language that you may already be familiar with.
They allow you to add formatting to your messages in the same way as HTML does,
but have a simpler syntax and will never break the layout of the pages you are viewing.
The ability to use vB Code is set on a forum-by-forum basis by the administrator,
so you should check the forum rules when you post a new message.
Below is a list of the vB Codes you can use to format your messages.
|
Lista de Códigos vB |
[b], [i], [u] |
Negrita / Italic / Underline |
[color] |
Color |
[size] |
Size |
[font] |
Fuente |
[highlight] |
Highlight |
[left], [right], [center] |
Left / Right / Centrado |
[indent] |
Indent |
[url] |
URL Hyperlinking |
[thread] |
Thread Linking |
[post] |
Post Linking |
[list] |
Bulleted Lists / Advanced Lists |
[img] |
Imágenes |
[code] |
Codigo |
[php] |
Codigo PHP |
[html] |
Codigo HTML |
[quote] |
Cita |
IUso Incorrecto del Código vB: - [url] www.vbulletin.com [/url] - No dejes espacios entre los corchetes y el texto al que hacen refencia.
- [email]myname@domain.com[email] - La etiqueta del final debe icluir el símbolo "/" ([/email])
|
Negrita / Italic / Underline |
Las etiquetas [b], [i] y [u] te permiten crear textos en negrita, cursiva y subrayada, respectivamente. |
Usage |
[b]value[/b]
[i]value[/i]
[u]value[/u]
|
Ejemplo de Uso |
[b]this text is bold[/b]
[i]this text is italic[/i]
[u]this text is underlined[/u]
|
Salida del Ejemplo |
this text is bold
this text is italic
this text is underlined
|
Color |
La etiqueta [color] te permite cambiar el color de tu texto. |
Usage |
[color=Opcion]value[/color] |
Ejemplo de Uso |
[color=blue]this text is blue[/color] |
Salida del Ejemplo |
this text is blue |
Size |
The [size] tag allows you to change the size of your text. |
Usage |
[size=Opcion]value[/size] |
Ejemplo de Uso |
[size=+2]this text is two sizes larger than normal[/size] |
Salida del Ejemplo |
this text is two sizes larger than normal |
Fuente |
La etiqueta [font] te permite cambiar el tipo de fuente usada en tus textos. |
Usage |
[font=Opcion]value[/font] |
Ejemplo de Uso |
[font=courier]this text is in the courier font[/font] |
Salida del Ejemplo |
this text is in the courier font |
Highlight |
The [highlight] tag allows you to emphasize your text. |
Usage |
[highlight]value[/highlight] |
Ejemplo de Uso |
[highlight]this text is highlighted[/highlight] |
Salida del Ejemplo |
this text is highlighted |
Left / Right / Centrado |
The [left], [right] and [center] tags allow you to change the alignment of your text. |
Usage |
[left]value[/left]
[center]value[/center]
[right]value[/right]
|
Ejemplo de Uso |
[left]this text is left-aligned[/left]
[center]this text is center-aligned[/center]
[right]this text is right-aligned[/right]
|
Salida del Ejemplo |
this text is left-aligned
this text is center-aligned
this text is right-aligned
|
Indent |
The [indent] tag allows you to indent your text. |
Usage |
[indent]value[/indent] |
Ejemplo de Uso |
[indent]this text is indented[/indent] |
Salida del Ejemplo |
this text is indented
|
URL Hyperlinking |
The [url] tag allows you to link to other websites and files. You can include an optional parameter to 'name' your link. |
Usage |
[url]value[/url]
[url=Opcion]value[/url]
|
Ejemplo de Uso |
[url]http://www.yourdomain.com/forum[/url]
[url=www.yourdomain.com/forum]Community Forums[/url]
|
Salida del Ejemplo |
http://www.yourdomain.com/forum/
Community Forums
|
Thread Linking |
The [thread] tag allows you to link to threads by specifying the thread id. You can include an optional parameter to 'name' your link. |
Usage |
[thread]threadid[/thread]
[thread=threadid]value[/thread]
|
Ejemplo de Uso |
[thread]42918[/thread]
[thread=42918]¡Clickea Aquí![/thread]
|
Salida del Ejemplo |
http://www.yourdomain.com/forum/showthread.php?t=42918
¡Clickea Aquí!
|
Bulleted Lists |
The [list] tag allows you to create simple, bulleted lists without specifying an option. Within the value portion, each bullet is denoted by the [*] tag. |
Usage |
[list]value[/list] |
Ejemplo de Uso |
[list] [*]list item 1 [*]list item 2 [/list] |
Salida del Ejemplo |
|
Advanced Lists |
The [list] tag allows you to create advanced lists by specifying an option. The option should have a value of 1 (for a numbered list) or A (for an alphabetic with capital letters list) or a (for an alphabetic with lowercase letters list) or I (for a numbered with capital Roman numeral list) or i (for a numbered with small Roman numeral list). |
Usage |
[list=Opcion]value[/list] |
Ejemplo de Uso |
[list=1] [*]list item 1 [*]list item 2 [/list]
[list=a] [*]list item 1 [*]list item 2 [/list] |
Salida del Ejemplo |
- list item 1
- list item 2
- list item 1
- list item 2
|
Imágenes |
La etiqueta [img] te permite incluir imágenes en tus posts. Para ello debes combinar estas etiquetas con la dirección URL de la imagen que quieras poner. |
Usage |
[img]value[/img] |
Ejemplo de Uso |
[img]http://www.latinchatnet.com/foros/images/statusicon/forum_new.gif[/img] (Not linked)
[url=http://www.yourdomain.com] [img]http://www.latinchatnet.com/foros/images/statusicon/forum_new.gif[/img] [/url] (Linked)
|
Salida del Ejemplo |
(Not linked)
(Linked)
|
Codigo |
La etiqueta [code] cambia a un tipo de letra de anchura fija (monospace) y evita todo espaciamiento. |
Usage |
[code]value[/code] |
Ejemplo de Uso |
[code]
<script type="text/javascript">
<!--
alert("Hello world!");
//-->
</script>
[/code] |
Salida del Ejemplo |
<script type="text/javascript">
<!--
alert("Hello world!");
//-->
</script> |
Codigo PHP |
The [php] tag performs the same function as the [code] tag, but also adds syntax highlighting for PHP code. Although it is designed for PHP, it may correctly highlight some other C-like languages. |
Usage |
[php]value[/php] |
Ejemplo de Uso |
[php]
$myvar = 'Hello World!';
for ($i = 0; $i < 10; $i++)
{
echo $myvar . "\n";
}
[/php] |
Salida del Ejemplo |
$myvar = 'Hello World!';
for ($i = 0; $i < 10; $i++)
{
echo $myvar . "\n";
}
|
Codigo HTML |
La etiqueta [html] te permite utilizar éste código en tus mensajes. |
Usage |
[html]value[/html] |
Ejemplo de Uso |
[html] <img src="image.gif" alt="image" /> <a href="testing.html" target="_blank">Testing</a> [/html] |
Salida del Ejemplo |
<img src="image.gif" alt="image" /> <a href="testing.html" target="_blank">Testing</a> |
Cita |
The [quote] tag allows you to attribute text to someone else. |
Usage |
[quote]Cita[/quote]
[quote=Nombre de Usuario]value[/quote]
|
Ejemplo de Uso |
[quote]vBulletin[/quote]
[quote=John Percival]vBulletin[/quote]
|
Salida del Ejemplo |
Cita:
Originalmente puesto por John Percival vBulletin
|
|
Todas las horas son GMT -3. Ahora son las 05:09.