Table of Contents

Discord

Markdown

Italique

*Italique*

Gras

**Gras**

Souligner

__Souligner__

Rayer

~~Rayer~~

Lien

Lien sans vignette/thumbnail :

<lien>

Texte cliquable :

[Texte](lien)

Spoiler

||spoiler||

Citation

> citation

>>> citation sur plusieurs lignes

Listes

- liste
 - sous liste

ou

* liste
 * sous liste

Titres

# Titre 1
## Titre 2
### Titre 3

Timestamp

<t:TIMESTAMP:FLAG>

Available flags :

Pour convertir une date/heure en Timestamp : https://www.epochconverter.com

Code

`code`

```
code sur
plusieurs lignes
```

```sql
SELECT * FROM nomtable;
```

asciidoc, autohotkey, bash, coffeescript, cpp, cs, css, diff, fix, glsl, ini, json, md, ml, prolog, py, sql, tex, xl, xml.

Sources :

Bot Discord

Procédure pour créer un bot Discord avec DiscordJS.

discord.js is a powerful Node.js module that allows you to interact with the Discord API very easily. It takes a much more object-oriented approach than most other JS Discord libraries, making your bot's code significantly tidier and easier to comprehend.

Installation environnement

cd C:\Users\Mithiriath\data\code\discord\bot
npm init
npn install discord.js
code .