This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
informatique:markdown [2024/11/18 11:09] – created yahiko | informatique:markdown [2024/12/27 22:04] (current) – yahiko | ||
---|---|---|---|
Line 13: | Line 13: | ||
<code markdown> | <code markdown> | ||
![texte alternatif](dossier/ | ![texte alternatif](dossier/ | ||
+ | </ | ||
+ | |||
+ | ===== Abbréviations ===== | ||
+ | |||
+ | Deux méthodes pour affiches les acronymes en Markdown : | ||
+ | |||
+ | ==== HTML ==== | ||
+ | Supporté par la plupart des implémentations de Markdown : | ||
+ | <code markdown> | ||
+ | <abbr title=" | ||
+ | </ | ||
+ | |||
+ | ==== Markdown Extra ==== | ||
+ | Si l' | ||
+ | <code markdown> | ||
+ | HTTP | ||
+ | |||
+ | *[HTTP]: Hypertext Transfer Protocol | ||
+ | </ | ||
+ | |||
+ | Cela produira le code HTML mis ci-dessus. | ||
+ | |||
+ | ===== Balises HTML details et summary ===== | ||
+ | '' | ||
+ | <code markdown> | ||
+ | <details markdown=" | ||
+ | < | ||
+ | Spoiler | ||
+ | </ | ||
+ | A la fin **il meurt**. | ||
+ | </ | ||
</ | </ | ||
Line 39: | Line 70: | ||
``` | ``` | ||
</ | </ | ||
+ | |||
+ |