Init project

This commit is contained in:
Cédric OLIVIER
2026-06-04 08:30:34 +02:00
commit 1265beefb8
1625 changed files with 208085 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
# Bienvenue dans md-render
**md-render** est un convertisseur Markdown → HTML avec prévisualisation live.
## Fonctionnalités
- ✅ Conversion Markdown → HTML
- ✅ Coloration syntaxique du code
- ✅ Mode watch avec rechargement automatique
- ✅ Serveur de prévisualisation intégré
## Exemple de code
```javascript
function hello(name) {
return `Bonjour, ${name} !`;
}
console.log(hello('monde'));
```
## Tableau
| Outil | Description |
|-----------|--------------------------|
| marked | Parser Markdown |
| chokidar | Surveillance de fichiers |
| highlight | Coloration syntaxique |
> **Note :** Ouvrez http://localhost:3000 après avoir lancé `--watch`.
## Installation
```bash
npm install -g .
md-render README.md --watch
```