Astuces de composition

  • Tags HTML autorisés : <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>

    Ce site autorise le contenu HTML. Alors qu'appendre tout l'HTML pourrait intimider, apprendre à utiliser un nombre très restreint des "balises" HTML les plus basiques est très facile. Ce tableau fournit des exemples pour chaque balise qui est autorisée sur ce site.

    Pour plus d'information voir les spécifications HTML du W3C ou utilisez votre moteur de recherche préféré pour trouver d'autres sites qui expliquent le code HTML.

    Description de la baliseVous entrezVous obtenez
    Les ancres sont utilisées pour établir des liens vers d'autres pages.<a href="http://anarcat.koumbit.org">L'Anarcarnet - The Anarblog</a>L'Anarcarnet - The Anarblog
    Accentué<em>Accentué</em>Accentué
    Fort<strong>Fort</strong>Fort
    Citation<cite>Citation</cite>Citation
    Text codé pour afficher du code de programmation<code>Codé</code>Codé
    Liste non ordonnée - utilisez <li> pour débuter chaque élément de la liste<ul> <li>Premier élément</li> <li>Second élément</li> </ul>
    • Premier élément
    • Second élément
    Liste ordonnée - utilisez <li> pour débuter chaque élément de la liste<ol> <li>Premier élément</li> <li>Second élément</li> </ol>
    1. Premier élément
    2. Second élément
    Les listes de définition sont similaires aux autres listes HTML. <dl> délimite la liste de définitions, <dt> délimite le terme à définir <dd> délimite la définition proprement dite.<dl> <dt>Premier terme</dt> <dd>Première définition</dd> <dt>Second terme</dt> <dd>Seconde définition</dd> </dl>
    Premier terme
    Première définition
    Second terme
    Seconde définition

    La plupart des caractères non usuels peuvent être entrés sans problème.

    Si vous rencontrez des problèmes, essayez d'utiliser les entités HTML. Un exemple courant est &amp; pour le et commercial &. Pour une liste complète des entités voyez la page entités HTML du W3C. Voici quelques caractères disponibles :

    Description du caractèreVous entrezVous obtenez
    Et commercial&amp;&
    Supérieur&gt;>
    Inférieur&lt;<
    Marque de citation&quot;"
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • Content in [[double square brackets]] will be linked to existing content with that title, or a page to create that content. Links can contain an optional bar, "|". Content on the left of the bar is the target; to the right, the link shown. Links to pages outside this site are allowed. They must start with one of the following: "http", "https", "ftp", or "mailto", and can exist either by themselves, or on the left of the bar. Examples:
  • [[simple link]] - will go to the content titled "simple link" or a page to create that content.
  • [[this is the target|this is the source]] - will present "this is the source" as a link to "this is the target", or a page to create that content.
  • [[http://www.example.com|this is the source]] - will present "this is the source" as a link to http://www.example.com.
  • [[http://www.example.com]] - will present "http://www.example.com" as a link to http://www.example.com.