Markdown Aide
Aide à la saisie au format Markdown
Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
Paragraph
Style | Syntax | Keyboard shortcut | Example | Output |
---|---|---|---|---|
Bold |
** ** or __ __
|
command/control + b | **This is bold text** |
This is bold text |
Italic |
* * or _ _
|
command/control + i | *This text is italicized* |
This text is italicized |
Strikethrough | ~~ ~~ |
~~This was mistaken text~~ |
||
Bold and italic |
** ** and _ _
|
**This text is _extremely_ important** |
This text is extremely important |
Listes
- Les listes standards non ordonnées : préfixer l'élément par *
- Les listes ordonnées : préfixer l'élément par le chiffre et un point (1., 2.)
Lien HTTP
[Description du lien](https://www.google.com)
Blockquotes
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Tables
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Bloc de code
```javascript var s = "JavaScript syntax highlighting"; alert(s); ``` ```python s = "Python syntax highlighting" print s ``` ``` No language indicated, so no syntax highlighting. But let's throw in a tag. ```
