Consejos para composición

  • Las direcciones de las páginas web y las de correo se convierten en enlaces automáticamente.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>

    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 etiquetaTecleaObtiene
    Las anclas se usan para hacer enlaces a otras páginas.<a href="http://www.difundefirefox.com">Difunde Firefox</a>Difunde Firefox
    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>
    • 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>
    1. Primer elemento
    2. 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

    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 &amp;, 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ácterTecleaObtiene
    Ampersand&amp;&
    Mayor que&gt;>
    Menor que&lt;<
    Comillas&quot;"
  • To post pieces of code, surround them with <code>...</code> tags. For PHP code, you can use <?php ... ?>, which will also colour it based on syntax.
  • Check and correct HTML before is stored in database. This parser strips down all potentially dangerous content within HTML: opening tag without its closing tag; closing tag without its opening tag; any of these tags: "base", "basefont", "head", "html", "body", "applet", "object", "iframe", "frame", "frameset", "script", "layer", "ilayer", "embed", "bgsound", "link", "meta", "style", "title", "blink", "xml" etc.; any of these attributes: on*, data*, dynsrc; javascript:/vbscript:/about: etc. protocols; expression/behavior etc. in styles; any other active content. It also tries to convert code to XHTML valid, but htmltidy is far better solution for this task.
  • 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.
  • Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:

    [quote]This is a simple quote.[/quote]
    is displayed as:

    Quote:
    This is a simple quote.

    Additionally, there is an optional attribute which allows quotes to specify the original author.

    [quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
          
    is displayed as:

    Mr. Drupal wrote:
    This is a quote with an attribution line.

    Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.

          [quote]I think she says it best...
          [quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
          but you can't argue with
          [quote=Ms. Reply]The more quotes, the merrier.
          Just don't get too carried away.[/quote]
          And I have nothing more to say.[/quote]
    is displayed as:

    Quote:
    I think she says it best...
    Ms. Quotation wrote:
    This is a quote nested within another quote.
    but you can't argue with
    Ms. Reply wrote:
    The more quotes, the merrier. Just don't get too carried away.
    And I have nothing more to say.