Markdown syntax
Markdown is a lightweight markup language used in certain parts of BetaSeries and originally created by John Gruber and Aaron Swartz. The purpose of Markdown syntax is to offer a syntax that is easy to read and write.
MARKDOWN FORMATTING EXAMPLE
To make text italic:
*quelques mots* ou _quelques mots_To make text bold:
**plus important** ou __également important__To add code:
`code` ou toute ligne commençant par une tabulationTo create an unordered list:
* Pommes * PoiresAnd an ordered list:
1. mon premier 2. mon deuxièmeHeadings are created with a certain number of # before the heading, corresponding to the desired heading level (HTML offers 6 heading levels, from <h1> to <h6>)
# un titre de premier niveau #### un titre de quatrième niveauFor the first two heading levels (<h1> and <h2>), it is also possible to underline the heading with = or - (their actual number doesn't matter)
Titre de niveau 1 ===================== Titre de niveau 2 --------------------As in emails, it's possible to create quotes:
> Ce texte apparaîtra dans un élément HTML blockquote.To create links:
[texte du lien](url_du_lien "texte pour le titre, facultatif")To display an image:
Source: Wikipedia.