« Markdown » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
 
(4 versions intermédiaires par le même utilisateur non affichées)
Ligne 10 : Ligne 10 :
</kode>
</kode>


= Style =
= [https://docs.github.com/en/free-pro-team@latest/github/writing-on-github/basic-writing-and-formatting-syntax#styling-text Style] =
<kode lang=mediawiki>
<kode lang=mediawiki>
*Italique*
*Italique* _Italique_
_Italique_


**Gras**
**Gras** __Gras__
__Gras__
 
~~ barré / strikethrough ~~
 
<u>souligné</u>
</kode>
</kode>


Ligne 79 : Ligne 81 :


![Texte alternatif](http://www.monsite.fr/image.png)
![Texte alternatif](http://www.monsite.fr/image.png)
![Force the width and keep the ratio](http://www.monsite.fr/image.png =200x)
![Force the width and the height](http://www.monsite.fr/image.png =400x300)
</kode>
</kode>



Dernière version du 5 janvier 2022 à 15:00

Paragraphe

Mediawiki.svg
Paragraphe 1 ligne 1  
Paragraphe 1 ligne 2  
Le retour à la ligne au sein d'un paragraphe se fait par l'ajout de 2 espaces à la fin de la ligne

Paragraphe 2 ligne 1  
Paragraphe 2 ligne 2

Style

Mediawiki.svg
*Italique* _Italique_

**Gras** __Gras__

~~ barré / strikethrough ~~

<u>souligné</u>

Titre

Mediawiki.svg
# Titre de niveau 1
Titre de niveau 1
=================

## Titre de niveau 2 (Les hash à la fin sont optionnels) ##############
Titre de niveau 2
-----------------

###### Titre de niveau 6
Le nombre de tirets importe peu, il faut juste souligner le titre.

Puces

Mediawiki.svg
- Une puce
- Une autre puce
  - Une sous-puce

* Une puce
* Une autre puce
  * Une sous-puce

1. Et de un
2. Et de deux
3. Et de trois

- [x] Task 1
- [] Task 2

Citation

Mediawiki.svg
> Citation sur
> une seule ligne
> en italique avec une marge à gauche

Indice et exposant

Mediawiki.svg
Le 1^(er) ingrédient, du glucose C^(_6)H^(_12)O^(_6)

Code source

Mediawiki.svg
La fonction `printf()` permet d'afficher du texte:

    printf("Hello world!\n");

```bash
printf("Hello world!\n");
```

Lien et image

Mediawiki.svg
[Texte du lien](http://www.monsite.fr)

![Texte alternatif](http://www.monsite.fr/image.png)
![Force the width and keep the ratio](http://www.monsite.fr/image.png =200x)
![Force the width and the height](http://www.monsite.fr/image.png =400x300)

Math

Logiciels