You are hereCompose tips
Compose tips
- Las direcciones de las páginas web y las de correo se convierten en enlaces automáticamente.
Etiquetas HTML permitidas: <a> <p> <span> <div> <h1> <h2> <h3> <h4> <h5> <h6> <img> <map> <area> <hr> <br> <br /> <ul> <ol> <li> <dl> <dt> <dd> <table> <tr> <td> <em> <b> <u> <i> <strong> <font> <del> <ins> <sub> <sup> <quote> <blockquote> <pre> <address> <code> <cite> <embed> <object> <strike> <caption>
Este sitio admite contenido HTML. Aprender todo el HTML es una tarea ardua e intimidante, pero aprender unas cuantas «etiquetas» HTML básicas es muy sencillo. Esta tabla proporciona ejemplos para cada etiqueta que está activa en el sitio.
Para más información, puede ver las especificaciones HTML de W3C o usar su motor de búsqueda favorito para buscar otros sitios que traten sobre HTML.
Descripción de la etiqueta Teclea Obtiene Las anclas se usan para hacer enlaces a otras páginas. <a href="http://www.salvadorbahia.net">Salvador, Bahia, Brazil</a>Salvador, Bahia, Brazil De forma predefinida, las etiquetas de párrafo se añaden automáticamente, aunque puede añadir etiquetas adicionales. <p>Párrafo uno.</p> <p>Párrafo dos.</p>Párrafo uno.
Párrafo dos.
No hay ayuda disponible para la etiqueta span. No hay ayuda disponible para la etiqueta div. Encabezado <h1>Título</h1>Título
Encabezado <h2>Subtítulo</h2>Subtítulo
Encabezado <h3>Subtítulo tres</h3>Subtítulo tres
Encabezado <h4>Subtítulo cuatro</h4>Subtítulo cuatro
Encabezado <h5>Subtítulo cinco</h5>Subtítulo cinco
Encabezado <h6>Subtítulo seis</h6>Subtítulo seis
No hay ayuda disponible para la etiqueta img. No hay ayuda disponible para la etiqueta map. No hay ayuda disponible para la etiqueta area. No hay ayuda disponible para la etiqueta hr. De forma predefinida, las etiquetas de saltos de líneas se añaden automáticamente, aunque puede usar esta etiqueta para añadir algunos saltos adicionales. Usar esta etiqueta es diferente, porque no se usa con un par de apertura y cierre como las demás. Use el « /» extra en la etiqueta para mantener la compatibilidad con XHTML 1.0. Texto con <br />salto de líneaTexto con
salto de líneaDe forma predefinida, las etiquetas de saltos de líneas se añaden automáticamente, aunque puede usar esta etiqueta para añadir algunos saltos adicionales. Usar esta etiqueta es diferente, porque no se usa con un par de apertura y cierre como las demás. Use el « /» extra en la etiqueta para mantener la compatibilidad con XHTML 1.0. Texto con <br />salto de líneaTexto con
salto de líneaLista desordenada: use <li> para comenzar cada elemento de la lista <ul> <li>Primer elemento</li> <li>Segundo elemento</li> </ul>- Primer elemento
- Segundo elemento
Lista ordenada: utilice <li> para comenzar cada elemento de la lista <ol> <li>Primer elemento</li> <li>Segundo elemento</li> </ol>- Primer elemento
- Segundo elemento
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>- Primer término
- Primera definición
- Segundo término
- Segunda definición
Tabla <table> <tr><th>Encabezado de tabla</th></tr> <tr><td>Celda de tabla</td></tr> </table>Encabezado de tabla Celda de tabla Enfatizado <em>Enfatizado</em>Enfatizado Negrita <b>Negrita</b>Negrita Subrayado <u>Subrayado</u>Subrayado Cursiva <i>Cursiva</i>Cursiva Fuerte <strong>Fuerte</strong>Fuerte No hay ayuda disponible para la etiqueta font. Eliminado <del>Eliminado</del>EliminadoInsertado <ins>Insertado</ins>Insertado Subíndice <sub>Sub</sub>índiceSubíndice Superíndice <sup>Super</sup>índiceSuperíndice No hay ayuda disponible para la etiqueta quote. Bloque de cita <blockquote>Bloque de cita</blockquote>Bloque de cita
Preformateado <pre>Preformateado</pre>Preformateado
No hay ayuda disponible para la etiqueta address. Texto codificado que se usa para mostrar código fuente de programación <code>Codificado</code>CodificadoCitado <cite>Citado</cite>Citado No hay ayuda disponible para la etiqueta embed. No hay ayuda disponible para la etiqueta object. No hay ayuda disponible para la etiqueta strike. No hay ayuda disponible para la etiqueta caption. Los caracteres menos habituales se pueden introducir directamente sin mayor complicación.
Si tiene problemas, intente usar entidades de caracteres HTML. Un ejemplo de esto es &, que se usa para conseguir el carácter &. Tiene una lista completa de las entidades HTML en la página de entidades. Entre los caracteres disponibles están:
Descripción del carácter Teclea Obtiene Ampersand && Mayor que >> Menor que << Comillas "" To add a lightbox to your images, add rel="lightbox" attribute to any link tag to activate the lightbox. For example:
<a href="image-1.jpg" rel="lightbox">image #1</a><a href="image-1.jpg" rel="lightbox[][my caption]">image #1</a>To show a caption either use the title attribute or put in the second set of square brackets of the rel attribute.
If you have a set of related images that you would like to group, then you will need to include a group name between square brackets in the rel attribute. For example:
<a href="image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
<a href="image-2.jpg" rel="lightbox[roadtrip][caption 2]">image #2</a>
<a href="image-3.jpg" rel="lightbox[roadtrip][caption 3]">image #3</a>
There are no limits to the number of image sets per page or how many images are allowed in each set.
If you wish to turn the caption into a link, format your caption in the following way:
<a href="image-1.jpg" rel='lightbox[][<a href="http://www.yourlink.com">View Image Details</a>]' >image #1</a>To add a lightbox slideshow to your images, add rel="lightshow[slideshowname][slide caption]" attribute to any link tag to activate the slideshow. For example:
<a href="image-1.jpg" rel="lightshow[show1]">image #1</a>
<a href="image-2.jpg" rel="lightshow[show1]">image #2</a>
<a href="image-3.jpg" rel="lightshow[show1]">image #3</a>
The title attribute in the link tag is optional. The addition of this attribute enables the display of a caption with the image displayed in the lightbox.
There are no limits to the number of slideshow image sets per page or how many images are allowed in each slideshow.
If you wish to turn the caption into a link, format your caption in the following way:
<a href="image-1.jpg" rel='lightshow[show1][<a href="http://www.yourlink.com">View Image Details</a>]'>image #1</a>It's possible to show video content in the lightbox. In this case the "rel" attribute should be set to
lightvideo. It's possible to group videos and to control the size of the lightbox by setting the "width" and "height" properties. The properties can be configured likelightvideo[group|width:300px; height: 200px;][caption]. The properties should all be of the format "property: value;" - note the closing semi-colon. If no properties are set, then the default width and height of 400px will be used. See below for more detailed examples.Basic example:
<a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo">Google video example - default size</a>Controlling lightbox size example:
<a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo[group|width:400px; height:300px;][caption]">Google video example - custom size</a>Supported video formats include asx, wmv, mov and swf. A number of online video providers are also supported, including YouTube and Google Video. For a full list of the current supported video providers please see the documentation on drupal.org.
It's possible to show HTML snippets in the lightbox, that is on the same domain. In this case the "rel" attribute should be set to "lightmodal". Again it's possible to group the content, (e.g.
lightmodal[group][caption]) but in addition to that, it's possible to control some of the modal properties. It's possible to set the "width", "height" and "scrolling" properties of the modal. The properties are separated from the group name by a|, for examplelightmodal[group|width:100px;][caption]. If no grouping is being used, then the|is still used and the format would belightmodal[|width:100px;]. The properties should all be of the format "property: value;" - note the closing semi-colon. If no modal properties are set, then the default width and height of 400px will be used. See below for more detailed examples.Basic example:
<a href="search.php" rel="lightmodal">Search</a>Grouped example:
<a href="search.php" rel="lightmodal[search][caption 1]">Search</a>
<a href="search.php?status=1" rel="lightmodal[search]">Search published</a>Controlling modal property example:
<a href="search.php" rel="lightmodal[|width:400px; height:300px; scrolling: auto;][caption]">Search</a>Controlling modal property when grouped example:
<a href="search.php" rel="lightmodal[search|width:400px; height:300px; scrolling: auto;]">Search</a>
<a href="search.php?status=1" rel="lightmodal[search|width:400px; height:300px;]">Search published</a>
