Init project
This commit is contained in:
@@ -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
|
||||
```
|
||||
Reference in New Issue
Block a user