Skip to content
Snippets Groups Projects
Commit f18b258d authored by Martial L's avatar Martial L
Browse files

Automatically generated. Merged on Netlify CMS.

parents 0acd0607 1c5cc884
No related branches found
No related tags found
1 merge request!295Update Page “test-typographie”
...@@ -82,10 +82,6 @@ Alert de type "success" ...@@ -82,10 +82,6 @@ Alert de type "success"
Alert de type "danger" Alert de type "danger"
</alert> </alert>
<alert type="danger" bgcolor="yellow">
Alert de type "danger" coloré ?
</alert>
``` ```
<details> <details>
<summary> Afficher le contenu masqué</summary> <summary> Afficher le contenu masqué</summary>
...@@ -184,9 +180,12 @@ Start numbering with offset: ...@@ -184,9 +180,12 @@ Start numbering with offset:
## Code ## Code
Inline `code` Pour afficher le code sans qu'il soit interprété :
Sur une ligne, il suffit de le mettre entre deux "`" : `code`
Indented code Ce "`" s'obtient en appuyant les touche "alt gr" + "7" ou "è" sur les claviers français.
Pour un bloc de code, il faut commencer et finir par une ligne de 3 "`".
``` ```
// Some comments // Some comments
...@@ -195,13 +194,9 @@ line 2 of code ...@@ -195,13 +194,9 @@ line 2 of code
line 3 of code line 3 of code
``` ```
Block code "fences" Syntax highlighting (faire apparaitre les mots du langage en couleur)
Il suffit de faire suivre les 3 premiers "`" par l'extension correspondant au langage ```js
```
Sample text here...
```
Syntax highlighting
```js ```js
var foo = function (bar) { var foo = function (bar) {
...@@ -237,8 +232,14 @@ Autoconverted link https://github.com/nodeca/pica (enable linkify to see) ...@@ -237,8 +232,14 @@ Autoconverted link https://github.com/nodeca/pica (enable linkify to see)
## Images ## Images
`![Minion](https://octodex.github.com/images/minion.png)`
(ne pas oublier le point d'exclamation au debut) donne :
![Minion](https://octodex.github.com/images/minion.png) ![Minion](https://octodex.github.com/images/minion.png)
`<img src="https://octodex.github.com/images/minion.png" width="300" align ="right" > `
donne :
<img src="https://octodex.github.com/images/minion.png" width="300" align ="right" > <img src="https://octodex.github.com/images/minion.png" width="300" align ="right" >
![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat") ![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
Like links, Images also have a footnote style syntax Like links, Images also have a footnote style syntax
...@@ -317,8 +318,20 @@ see [how to change output](https://github.com/markdown-it/markdown-it-emoji#chan ...@@ -317,8 +318,20 @@ see [how to change output](https://github.com/markdown-it/markdown-it-emoji#chan
### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup) ### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup)
```
* 19^th^ * 19^th^
* H\~2\~O * H\~2\~O
```
* 19^th^
* H\~2\~O
Ne fonctionne pas
```
* 19<sup>th</sup>
* H<sub>2</sub>O
```
* 19<sup>th</sup>
* H<sub>2</sub>O
Fonctionne beaucoup mieux
### [<ins>](https://github.com/markdown-it/markdown-it-ins) ### [<ins>](https://github.com/markdown-it/markdown-it-ins)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment