Compose tips
- Las direcciones de las páginas web y las de correo se convierten en enlaces automáticamente.
Etiquetas HTML permitidas: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <p> <div> <img> <h1> <h2> <h3>
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.cinek.org">Kuubalaisen elokuvan päivät - Jornadas de Cine Cubano</a>Kuubalaisen elokuvan päivät - Jornadas de Cine Cubano 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>CodificadoLista 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
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 div. No hay ayuda disponible para la etiqueta img. Encabezado <h1>Título</h1>Título
Encabezado <h2>Subtítulo</h2>Subtítulo
Encabezado <h3>Subtítulo tres</h3>Subtítulo tres
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 "" - Las líneas y los párrafos se reconocen automáticamente. Las etiquetas <br /> para el salto de línea y <p> y </p> para abrir y cerrar el párrafo se insertan automáticamente. Si los párrafos no se reconocen, simplemente añada unas cuantas líneas vacías.
-
The Views module allows administrators to create dynamic lists of content for display in pages or blocks. It is possible to insert those lists into existing node bodies and blocks, but such inclusion requires that PHP filtering be turned on. The Insert View module allows any user to insert view listings using tag syntax, without the need for PHP execution permissions. The Insert View tag syntax for embedding a view is relatively simple:
[view:my_view]
is replaced by the content listing corresponding to the named view. In this case it is my_view.
[view:my_view=my_display]
invokes the my_view view using the my_display view display ID. If the display slot is left empty, the view's "default" display is used.
[view:my_view=my_display=1,2,3]
uses the my_display view display, and passes a comma delimited list of arguments (in this case 1, 2, and 3) to the view.
Here's an example you could use with the default view named "tracker" which uses the page display and takes a user ID as an argument:
[view:tracker=page=1]
In short this tag says, "Insert the view named tracker, use the "page" display, and supply the argument 1."
Sometimes you want to pass an argument without specifying a display ID. You can do that by leaving the display ID slot empty, like so:
[view:my_view==1]
How to find a display ID: On the edit page for the view in question, you'll find a list of displays at the left side of the control area. "Defaults" will be at the top of that list. Hover your mouse pointer over the name of the display you want to use. A URL will appear in the status bar of your browser. This is usually at the bottom of the window, in the chrome. Everything after #views-tab- is the display ID. For example in http://localhost/admin/build/views/edit/tracker?destination=node%2F51#views-tab-page the display ID would be "page".
