Skip to content

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 tabulation

To create an unordered list:

* Pommes * Poires

And an ordered list:

1. mon premier 2. mon deuxième

Headings 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 niveau

For 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:

![Texte alternatif](url_de_l'image "texte pour le titre, facultatif")

Source: Wikipedia.