Markdown
Par ce salop d'Oreo
Le markdown
Le markdown est un langage de balisage (Markup Language) tout comme le HTML (HyperText Markup Language), le XML ou le LaTeX. Dans ces différents langages, des balises permettent dce délimiter des séquences de caractères afin de traiter le texte d'une manière particulière lors de son affichage.
L'intérêt principal du markdown est sa simplicité de lecture et d'écriture permettant une rédaction rapide et fluide tout en mettant en place une structure claire dans le document en vue de sa relecture.
Le Markdown est souvent utilisé dans les blogs, les messageries instantanées, les forums et même (attention, suprise) dans la création de wiki (oui ce wiki est écrit en Markdown) du fait de la rapidité de son apprentissage.
Syntax
Bold and italic
*italic text*
italic text
_italic text_
italic text
**bold text**
bold text
__bold text__
bold text
***italic and bold text***
italic and bold text
___italic and bold text___
italic and bold text
Crossed out text
~~cross out text~~
cross out text
Titles
# Title 1
## Title 2
### Title 3
#### Title 4
##### Title 5
Paragraph
To insert a new paragraph just put a new ligne.
To insert a end of line put two spaces or a \.
Quote
> some text
> continue the text
> an other text zone
some text continue the text
an other text zone
List
You can use the plus sign, the dash or an asterisk as follows:
* l1
* l2
* l3
- l1
- l2
- l3
Code
To print code you can use backtick:
`code`
You can also use three backticks to print a block of code and add the programing language to print syntax in color.
```html
<body>
TOTO
</body>
```.
<body>
TOTO
</body>
Hyperlink
To display a clickable hyperlink use <
hyperlink >
.
To display an hyperlink not clickable use `
hyperlink `
.
To give an alternative name to an hyperlink just add [Name]
in front of your link.
Images
alternative text image link
v v
![image example](https://example.com/bild.jpg)
Tables
| cell title1 | cell title 2|
|--------|--------|
| A | B |
| C | D |
cell title1 | cell title 2 |
---|---|
A | B |
C | D |
Footnotes
In the text I place [^1] a footnotes \
[^1]: this is a footnote
In the text I place 1 a footnotes
this is a footnote