Dicas de composição

formatos de entrada:
  • Filtered HTML:
    • Endereços de páginas de internet e emails viram links automaticamente.
    • Tags HTML permitidas: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <h2> <h3> <h4> <h5> <table> <p align="center"> <object> <embed>

      Este site permite que você use HTML. Embora aprender todos os detalhes de HTML possa parecer um pouco difícil, aprender algumas poucas "tags" HTML, as mais básicas, é fácil. Esta tabela apresenta exemplos de cada tag habilitada neste site.

      Para maiores informações, consulte as especificações do HTML, da W3C, ou então use algum site de busca para achar algum outro site que fale sobre HTML.

      Descrição da TagVocê EscreveVocê Terá
      Âncoras são usadas para criar links para outras páginas.<a href="http://www.sbrpg.com.br">Sociedade Brasileira de RPG</a>Sociedade Brasileira de RPG
      Ênfase<em>Ênfase</em>Ênfase
      Negrito<strong>Negrito</strong>Negrito
      Citação<cite>Citação</cite>Citação
      Código-fonte de programação<code>Codificado</code>Codificado
      Lista não ordenada - use <li> no começo de cada item da lista<ul> <li>Primeiro item</li> <li>Segundo item</li> </ul>
      • Primeiro item
      • Segundo item
      Lista ordenada - use <li> para iniciar cada item da lista<ol> <li>Primeiro item</li> <li>Segundo item</li> </ol>
      1. Primeiro item
      2. Segundo item
      Listas de verbetes são similares a outras listas HTML. <dl> inicia a lista de verbetes, <dt> inicia o verbete e <dd> inicia a descrição do verbete.<dl> <dt>Primeiro termo</dt> <dd>Primeira definição</dd> <dt>Segundo termo</dt> <dd>Definição 2</dd> </dl>
      Primeiro termo
      Primeira definição
      Segundo termo
      Definição 2
      Não há ajuda disponível sobre a tag img.
      Cabeçalho<h2>Subtítulo</h2>

      Subtítulo

      Cabeçalho<h3>Subtítulo 3</h3>

      Subtítulo 3

      Cabeçalho<h4>Subtítulo 4</h4>

      Subtítulo 4

      Cabeçalho<h5>Subtítulo 5</h5>
      Subtítulo 5
      Tabela<table> <tr><th>Cabeçalho de tabela</th></tr> <tr><td>Célula de tabela</td></tr> </table>
      Cabeçalho de tabela
      Célula de tabela
      Por padrão, as tags de parágrafo são inseridas automaticamente. Use portanto essa tag se quiser pôr parágrafos adicionais.<p>Parágrafo um.</p> <p>Parágrafo dois.</p>

      Parágrafo um.

      Parágrafo dois.

      Não há ajuda disponível sobre a tag object.
      Não há ajuda disponível sobre a tag embed.

      A maioria dos caracteres, inclusive os pouco usados, podem ser inseridos nenhum problema.

      Se você encontrar algum problema, tente usar entidades HTML de caractere. Um exemplo comum é &amp; para o caractere "e comercial", &. Para uma lista completa das entidades veja a página entidades HTML (em inglês). Alguns dos caracteres disponíveis são:

      Descrição do caractereVocê EscreveVocê Terá
      "E" comercial&amp;&
      Maior que&gt;>
      Menor que&lt;<
      Aspas&quot;"
    • Quebras de linhas e parágrafos são automaticamente reconhecidos. As tags de quebra de linha, <br />, de parágrafo, <p>, e de fim de parágrafo, <p>, são inseridas automaticamente. Se os parágrafos não forem reconhecidos, basta inserir algumas linhas em branco.
    • 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 like lightvideo[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.

    • Paging Help

      Break long pages into smaller ones by means of a page break tag (e.g. <!--pagebreak-->):

      First page here.
      <!--pagebreak-->
      Second page here.
      <!--pagebreak-->
      More pages here.

      Automatic page breaking based on character or word count is also supported.

  • Full HTML:
    • Endereços de páginas de internet e emails viram links automaticamente.

    • Insert view filter allows to embed views using tags. The tag syntax is relatively simple: [view:name=display=args]
      For example [view:tracker=page=1] says, embed a view named "tracker", use the "page" display, and supply the argument "1".
      The display and args parameters can be omitted. If the display is left empty, the view's default display is used.
      Multiple arguments are separated with slash. The args format is the same as used in the URL (or view preview screen).
      Valid examples:
      [view:my_view]
      [view:my_view=my_display]
      [view:my_view=my_display=arg1/arg2/arg3]
      [view:my_view==arg1/arg2/arg3]

    • Paging Help

      Break long pages into smaller ones by means of a page break tag (e.g. <!--pagebreak-->):

      First page here.
      <!--pagebreak-->
      Second page here.
      <!--pagebreak-->
      More pages here.

      Automatic page breaking based on character or word count is also supported.

SBRPG - Sociedade Brasileira de RPG

Apoiando o estudo e prática do RPG no Brasil.

Rua Georgia, 210 - Brooklin - São Paulo - SP
Tel. (11) 97022 9868 E-mail: sbrpg@sbrpg.com.br

SBRPG nas Redes Sociais

Whatsapp  (11) 9.7022-9868

Compartilhe