|
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<title>Convertisseur Markdown</title> |
|
<style> |
|
table { |
|
border-collapse: collapse; |
|
} |
|
th, td { |
|
border: 1px solid black; |
|
} |
|
</style> |
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> |
|
</head> |
|
<body> |
|
<h1>Convertisseur Markdown</h1> |
|
<textarea id="markdown" cols="50" rows="10"></textarea> |
|
<button onclick="convertir()">Convertir</button> |
|
<div id="preview"></div> |
|
|
|
<script> |
|
function convertir() { |
|
var markdownText = document.getElementById('markdown').value; |
|
var html = marked.parse(markdownText); |
|
document.getElementById('preview').innerHTML = html; |
|
} |
|
</script> |
|
</body> |
|
</html> |