82 lines
2.0 KiB
Markdown
82 lines
2.0 KiB
Markdown
|
|
||
|
---
|
||
|
## Exemples de syntaxe pour mettre en valeur
|
||
|
### Faire des liens avec des crochets et des parenthèses
|
||
|
* Supportons l'Electronic Frontière Fondation **[EFF](https://eff.org)**.
|
||
|
* Ceci est le *[Guide du Markdown](https://www.markdownguide.org)*.
|
||
|
* Visitez la section à propos de [`code`](#code).
|
||
|
|
||
|
```json
|
||
|
{
|
||
|
"firstName": "John",
|
||
|
"lastName": "Smith",
|
||
|
"age": 25
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### insérer une image
|
||
|
![logo markdown](https://d33wubrfki0l68.cloudfront.net/f1f475a6fda1c2c4be4cac04033db5c3293032b4/513a4/assets/images/markdown-mark-white.svg)
|
||
|
|
||
|
![Feynman Lecture 1](https://cdn.mathpix.com/snip/images/0Y13pkOem1h2kqhOPAB98mtSCL5FQlQPtot1obxd-R8.original.fullsize.png)
|
||
|
|
||
|
|
||
|
## utilisation avancée du markdown
|
||
|
### cases à cocher
|
||
|
- [x] Write the press release
|
||
|
- [ ] Update the website
|
||
|
- [ ] Contact the media
|
||
|
|
||
|
### faire un tableau
|
||
|
| Syntax | Description |
|
||
|
| ----------- | ----------- |
|
||
|
| Header | Title |
|
||
|
| Paragraph | Text |
|
||
|
|
||
|
|
||
|
assurez vous de créditer vos images et de respecter leur licence. Licence que l'on espère ouverte.
|
||
|
|
||
|
|
||
|
### note de pied de page
|
||
|
|
||
|
Here's a simple footnote,[^1] and here's a longer one.
|
||
|
|
||
|
[^1]: This is the first footnote.
|
||
|
|
||
|
## citation
|
||
|
> This is my blockquote,
|
||
|
> It's taking up two lines.
|
||
|
|
||
|
> This is my nested blockquote,
|
||
|
>> it's pretty nifty.
|
||
|
|
||
|
## définitions et listes
|
||
|
|
||
|
+ Sub-lists are made by indenting 2 spaces:
|
||
|
- Different characters in in the same sub-list will render the same characters:
|
||
|
* Ac tristique libero volutpat at
|
||
|
+ Facilisis in pretium nisl aliquet
|
||
|
- Nulla volutpat aliquam velit
|
||
|
+ Very easy!
|
||
|
|
||
|
First Term
|
||
|
: This is the definition of the first term.
|
||
|
|
||
|
Second Term
|
||
|
: This is one definition of the second term.
|
||
|
: This is another definition of the second term.
|
||
|
|
||
|
## formules de math
|
||
|
$$
|
||
|
x = \frac { - b \pm \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
|
||
|
$$
|
||
|
|
||
|
Compute \(f(x) = x^2 + 2\) if \(x=2\).
|
||
|
|
||
|
\sum_{n=1}^{\infty} 2^{-n} = 1
|
||
|
|
||
|
\prod_{i=a}^{b} f(i)
|
||
|
|
||
|
## emojis
|
||
|
Gone camping! :tent: Be back soon.
|
||
|
:wink: :cry: :laughing: :yum:
|