Consejos de redacción

  • 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> <img> <br> <b> <i> <p> <pre> <h1> <h2> <h3> <h4> <h5> <h6> <div> <span> <object> <param> <embed>

    Este sitio permite contenido con HTML. Aunque aprender HTML puede intimidar, saber cómo usar un conjunto limitado de las etiquetas HTML más básicas es muy sencillo. Esta tabla proporciona ejemplos de como se usa cada etiqueta admitida en este sitio.

    Para más información, consulte las especificaciones HTML del W3C o use su buscador preferido para encontrar otros sitios que le expliquen el HTML.

    Descripción de la etiquetaCuando escribeObtiene
    Las anclas se usan para hacer enlaces a otras páginas.<a href="https://blog.intropedro.com">introBlog</a>introBlog
    Enfatizado<em>Enfatizado</em>Enfatizado
    Negrita<strong>Negrita</strong>Negrita
    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
    No hay ayuda disponible para la etiqueta li.
    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
    No hay ayuda disponible para la etiqueta dt.
    No hay ayuda disponible para la etiqueta dd.
    No hay ayuda disponible para la etiqueta img.
    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ínea
    Negrita<b>Negrita</b>Negrita
    Cursiva<i>Cursiva</i>Cursiva
    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.

    Preformateado<pre>Preformateado</pre>
    Preformateado
    Título<h1>Título</h1>

    Título

    Título<h2>Subtítulo</h2>

    Subtítulo

    Título<h3>Subtítulo tres</h3>

    Subtítulo tres

    Título<h4>Subtítulo cuatro</h4>

    Subtítulo cuatro

    Título<h5>Subtítulo cinco</h5>
    Subtítulo cinco
    Título<h6>Subtítulo seis</h6>
    Subtítulo seis
    No hay ayuda disponible para la etiqueta div.
    No hay ayuda disponible para la etiqueta span.
    No hay ayuda disponible para la etiqueta object.
    No hay ayuda disponible para la etiqueta param.
    No hay ayuda disponible para la etiqueta embed.

    La mayoría de los caracteres inusuales se pueden escribir directamente sin ningún problema.

    Si encuentra problemas, pruebe usar entidades de caracteres HTML. Un ejemplo común parece &amp; para un ampersand & carácter. Para una lista completa de entidades vea HTML de entidades. Algunos de los personajes disponibles incluyen:

    Descripción del carácterCuando escribeObtiene
    Ampersand&amp;&
    Mayor que&gt;>
    Menor que&lt;<
    Comillas&quot;"
  • Syntax highlighting of source code can be enabled with the following tags:

    • Generic syntax highlighting tags: "<code>".
    • Language specific syntax highlighting tags: .

    Options and tips:

    • The language for the generic syntax highlighting tags can be specified with one of the attribute(s): type, lang, language, class. The possible values are: "apache" (for Apache configuration), "bash" (for Bash), "c" (for C), "cpp" (for C++), "csharp" (for C#), "css" (for CSS), "drupal5" (for Drupal 5), "drupal6" (for Drupal 6), "html4strict" (for HTML), "html5" (for HTML5), "java" (for Java), "javascript" (for Javascript), "jquery" (for jQuery), "latex" (for LaTeX), "nagios" (for Nagios), "objc" (for Objective-C), "perl" (for Perl), "perl6" (for Perl 6), "php" (for PHP), "python" (for Python), "ruby" (for Ruby), "sql" (for SQL), "xml" (for XML).
    • The supported tag styles are: <foo>, [foo].
    • Line numbering can be enabled/disabled with the attribute "linenumbers". Possible values are: "off" for no line numbers, "normal" for normal line numbers and "fancy" for fancy line numbers (every nth line number highlighted). The start line number can be specified with the attribute "start", which implicitly enables normal line numbering. For fancy line numbering the interval for the highlighted line numbers can be specified with the attribute "fancy", which implicitly enables fancy line numbering.
    • If the source code between the tags contains a newline (e.g. immediatly after the opening tag), the highlighted source code will be displayed as a code block. Otherwise it will be displayed inline.
    • A title can be added to a code block with the attribute "title".

    Defaults:

    • Default highlighting mode for generic syntax highlighting tags: when no language attribute is specified, no syntax highlighting will be done.
    • Default line numbering: normal line numbers.

    Ejemplos:

    You typeYou get
    <code>foo = "bar";</code>Inline code with the default syntax highlighting mode.
    <code>
    foo = "bar";
    baz = "foz";
    </code>
    Code block with the default syntax highlighting mode.
    <code lang="cpp" linenumbers="normal">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for C++ source code
    and normal line numbers.
    <code language="cpp" start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for C++ source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.
  • 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.
  • Si incluye un emoticono textual en su envío (véa la tabla más abajo), se remplazará con un emoticono de imagen.
    EmoticonoEmoticonos textuales
    *music2**music2* [:-} [:} [:-}
    *wacko**wacko* %) %-) :-$ :$ :wacko: :WACKO:
    *boredom**boredom* *TIRED* |-0 :boredom:
    *sorry2**sorry2* *SORRY* :sorry:
    *stop**stop* *STOP* :stop:
    *dance4**dance4* *DANCE* :dance:
    *sad**sad* :-( :( +( =( :-(( :(( +(( =(( :sad:
    *aggressive**aggressive* >:o >:O >+O >:o >+o :-@ :angry:
    *mamba**mamba* *WASSUP* *SUP* *MAMBA* :MAMBA:
    *bomb**bomb* @=
    *fool**fool* :-| :| =| :-|
    *smile**smile* :-) :) +) =) :smile:
    *unknw**unknw* *DONT_KNOW* *UNKNOWN* :HZ: :hz:
    *blush**blush* :-[ :[ ;'> ;-. :blush:
    *drinks**drinks* *DRINK* :drink:
    *secret**secret* :-X :-x X: x: :-# :# :secret:
    *yahoo**yahoo* *YAHOO* *YAHOO!* :YAHOO: :yahoo:
    *i-m_so_happy**i-m_so_happy* *HAPPY* :happy: :HAPPY: :Happy: ^^
    *clapping**clapping* *BRAVO* :BRAVO: :bravo: :clapping:
    *nea**nea* *NO* *NO*
    *biggrin**biggrin* :-D :D +D =D :biggrin:
    *mosking**mosking* *JOKINGLY* 8P 8p
    *wink**wink* ;-) ;) ^_~ :wink:
    *dirol**dirol* 8-) 8) B) :COOL: :cool:
    *shok**shok* =-O =O =-o =0 O_O O_o o_O O_0 o_0 0_O 0_o
    *kiss3**kiss3* *KISSING*
    *bye**bye* *BYE*
    *diablo**diablo* ]:-> }:-> ]:> }:> >:-] >:] (6) :diablo: *DIABLO*
    *lol**lol* *LOL* :-)) :)) =)) +)) :-))) :))) :lol:
    *bad**bad* :-! :! :-~ ;-~ :(~ +(~ =(~ :bad:
    *scratch_one-s_head**scratch_one-s_head* *SCRATCH*
    *ROFL**ROFL* *ROFL* :ROFL: :rofl: :-)))) :-))))) :-)))))) :)))) :))))) :)))))) =)))) =))))) =))))))
    *acute**acute* ;D *ACUTE*
    *dash1**dash1* *DASH* *WALL*
    *mail1**mail1* *WRITE* *MAIL*
    *preved**preved* *HELLO* *PREVED* *PRIVET* *HI*
    *new_russian**new_russian* \m/ \M/
    *kiss2**kiss2* :-* :* :-{} :{} +{} ={} ^.^ :kiss: *KISS*
    *beee**beee* :-\ :-/ :\ :-\
    *pleasantry**pleasantry* *db* :db:
    *cray2**cray2* :'( :'-(
    *give_rose**give_rose* @}->-- @}-:-- @>}--,-`--- (F) (f) @}->--
    *air_kiss**air_kiss* *KISSED*
    *crazy**crazy* *CRAZY* :crazy:
    *man_in_love**man_in_love* *IN%%_%%LOVE* *IN LOVE*
    *ok**ok* *OK*
    *yes3**yes3* *YES*
    *blum3**blum3* :-P :P :-p :p +P =P +p =p :-b :b +b =b :tongue:
    *pardon**pardon* *PARDON* =] :PARDON: :pardon:
    *angel**angel* O:-) O:) O+) O=) 0:-) 0:) 0+) 0=) (A) (a)
    *good**good* *THUMBS%%_%%UP* :GOOD: :good: *GOOD* *THUMBS UP*
  • No se permiten etiquetas HTML.
  • Las direcciones de las páginas web y las de correo se convierten en enlaces automáticamente.
  • 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.