Etiquetas HTML permitidas: <a> <em> <strong> <cite> <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.
| Descripción de la etiqueta | Teclea | Obtiene |
|---|---|---|
| Las anclas se usan para hacer enlaces a otras páginas. | <a href="http://coalicionventanasverraco.org">Coalición Pro Bosque Seco Ventanas Verraco</a> | Coalición Pro Bosque Seco Ventanas Verraco |
| Enfatizado | <em>Enfatizado</em> | Enfatizado |
| Fuerte | <strong>Fuerte</strong> | Fuerte |
| Citado | <cite>Citado</cite> | Citado |
| Texto codificado que se usa para mostrar código fuente de programación | <code>Codificado</code> | Codificado |
| Lista desordenada: use <li> para comenzar cada elemento de la lista | <ul> <li>Primer elemento</li> <li>Segundo elemento</li> </ul> |
|
| Lista ordenada: utilice <li> para comenzar cada elemento de la lista | <ol> <li>Primer elemento</li> <li>Segundo elemento</li> </ol> |
|
| Las listas de definiciones son similares a otras listas HTML. <dl> da comienzo a la lista de definiciones, <dt> da comienzo a cada término definido y <dd> da comienzo a la descripción de la definición. | <dl> <dt>Primer término</dt> <dd>Primera definición</dd> <dt>Segundo término</dt> <dd>Segunda definición</dd> </dl> |
|
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 & for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:
| Descripción del carácter | Teclea | Obtiene |
|---|---|---|
| Ampersand | & | & |
| Mayor que | > | > |
| Menor que | < | < |
| Comillas | " | " |
Gallery2 Filter:
You can link to items in your embedded Gallery2 using a special code. This code will be replaced by a thumbnail image that is linked to the actual item in your Gallery.
Syntax:
[G2:item_id n=number type=type size=number class=name frame=name album_frame=name item_frame=name]
You may quickly link to image nodes using a special syntax. Each image code will be replaced by thumbnail linked to full size image node. Syntax:
[image:node_id align=alignment hspace=n vspace=n border=n size=label width=n height=n nolink=(0|1) class=name style=style-data node=id]
Every parameter except node_id is optional.
Typically, you will specify one of size, width, or height, or none of them. If you use size=label, where label is one of the image size labels specified on the image settings page, the size associated with that label will be used. The sizes "thumbnail", "preview", and "original" are always available. If you use width=n or height=n, the image will be scaled to fit the specified width or height. If you use none of them, the thumbnail image size will be used.
If you specify nolink=1, no link will be created to the image node. The default is to create a link to the image.
Alternatively, if you specify node=id, a link will be created to the node with the given id.
The align, hspace, vspace, border, class, and style parameters set the corresponding attributes in the generated img tag.
You may link to files uploaded with the current node using special tags. The tags will be replaced by the corresponding files. For example: Suppose you uploaded three files (in this order):
[inline:1=test] or [inline:imag1.png=test]will be replaced by
<img src=imag1.png alt=test>
[file:1=test] or [file:imag1.png=test]will be replaced by
<a href=imag1.png>test</a>
[attachment:2=test] or [attachment:file1.pdf=test]will be replaced by
<a href=file1.pdf.png>test</a>