Files
MarkdownRender/test.md
T
Cédric OLIVIER 1265beefb8 Init project
2026-06-04 08:30:34 +02:00

787 B

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

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

npm install -g .
md-render README.md --watch