--- language: markdown contributors: - ["Andrei Curelaru", "http://www.infinidad.fr"] filename: markdown.md --- Markdown a été crée par Jhon Gruber en 2004. Ceci se veut être d'une syntaxe facile à lire et à écrire, aisément convertible en HTML(et beaucoup d'autres formats aussi à présent). Faites moi autant de retours que vous voulez! Sentez vous libre de "forker" et envoyer des pull request! ```markdown # Ceci est un

## Ceci est un

### Ceci est un

#### Ceci est un

##### Ceci est un

###### Ceci est un
Ceci est un h1 ============= Ceci est un h2 ------------- *Ce texte est en italique.* _Celui-ci aussi._ **CE texte est en gras.** __Celui-là aussi.__ ***Ce texte a les deux styles.*** **_Pareil ici_** *__Et là!__* ~~Ce texte est barré avec strikethrough.~~ Ceci est un paragraphe. J'écris dans un paragraphe, marrant non? Maintenant je suis dans le paragraphe 2. Je suis toujours dans le paragraphe 2 ici aussi! Puis là, eh oui, le paragraphe3! J'ai deux espaces vides à la fin (sélectionnez moi pour les voir). Bigre, il y a un
au dessus de moi! > Ceci est une superbe citation. Vous pouvez même > revenir à la ligne quand ça vous chante, et placer un `>` devant chaque bout de ligne faisant partie > de la citation. > La taille ne compte pas^^ tant que chaque ligne commence par un `>`. > Vous pouvez aussi utiliser plus d'un niveau >> d'imbrication! > Class et facile, pas vrai? * Item * Item * Un autre item or + Item + Item + Encore un item or - Item - Item - Un dernier item 1. Item un 2. Item deux 3. Item trois 1. Item un 1. Item deux 1. Item trois 1. Item un 2. Item deux 3. Item trois * Sub-item * Sub-item 4. Item quatre Les [ ] ci dessous, n'ayant pas de [ x ], deviendront des cases à cocher HTML non-cochées. - [ ] Première tache à réaliser. - [ ] Une autre chose à faire. La case suivante sera une case à cocher HTML cochée. - [x] Ca ... c'est fait! This is code So is this my_array.each do |item| puts item end John didn't even know what the `go_to()` function did! \`\`\`ruby def foobar puts "Hello world!" end \`\`\` <-- The above text doesn't require indenting, plus Github will use syntax highlighting of the language you specify after the ``` --> *** --- - - - **************** [Click me!](http://test.com/) [Click me!](http://test.com/ "Link to Test.com") [Go to music](/music/). [Click this link][link1] for more info about it! [Also check out this link][foobar] if you want to. [link1]: http://test.com/ "Cool!" [foobar]: http://foobar.biz/ "Alright!" [This][] is a link. [this]: http://thisisalink.com/ ![This is the alt-attribute for my image](http://imgur.com/myimage.jpg "An optional title") ![This is the alt-attribute.][myimage] [myimage]: relative/urls/cool/image.jpg "if you need a title, it's here" is equivalent to [http://testwebsite.com/](http://testwebsite.com/) I want to type *this text surrounded by asterisks* but I don't want it to be in italics, so I do this: \*this text surrounded by asterisks\*. | Col1 | Col2 | Col3 | | :----------- | :------: | ------------: | | Left-aligned | Centered | Right-aligned | | blah | blah | blah | Col 1 | Col2 | Col3 :-- | :-: | --: Ugh this is so ugly | make it | stop ``` For more info, check out John Gruber's official post of syntax [here](http://daringfireball.net/projects/markdown/syntax) and Adam Pritchard's great cheatsheet [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).