Config

Markdown

Markdown pur

Image cliquable

[![BetterClock](https://user-images.githubusercontent.com/70631622/169669787-4f5f1fe4-e05e-4a92-9165-aa7932a0962c.png)](https://github.com/FlorianLatapie/BetterClock)

BetterClock

Encarts de note et d’avertissement

Source et précisions

> **Note**  
> This is a note

Note
This is a note

> **Warning**  
> This is a warning

Warning
This is a warning

Encarts de notes, avertissements, erreurs (seulement sur Github)

> [!NOTE]  
> Highlights information that users should take into account, even when skimming.

> [!TIP]
> Optional information to help a user be more successful.

> [!IMPORTANT]  
> Crucial information necessary for users to succeed.

> [!WARNING]  
> Critical content demanding immediate user attention due to potential risks.

> [!CAUTION]
> Negative potential consequences of an action.

[!NOTE]
Highlights information that users should take into account, even when skimming.

[!TIP] Optional information to help a user be more successful.

[!IMPORTANT]
Crucial information necessary for users to succeed.

[!WARNING]
Critical content demanding immediate user attention due to potential risks.

[!CAUTION] Negative potential consequences of an action.

Markdown cursed

HTML

Texte rétractable

[!NOTE] Ne fonctionne pas sur les pages automatiquement générées par github.io

Source

<details><summary>Click me</summary>

### Heading

1. Foo
2. Bar
    * Baz
    * Qux

### Some Code

  ```js
  function logSomething(something) {
    console.log('Something', something);
  }

</details>
Click me ### Heading 1. Foo 2. Bar * Baz * Qux ### Some Code ```js function logSomething(something) { console.log('Something', something); } ```