File size: 767 Bytes
d992149 ed14eea d992149 ed14eea d992149 ed14eea d992149 ed14eea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<!DOCTYPE html>
<html>
<head>
<title>Convertisseur Markdown</title>
<style>
.container {
display: flex;
}
textarea, #preview {
width: 50%;
height: 300px;
padding: 10px;
}
</style>
</head>
<body>
<h1>Convertisseur Markdown</h1>
<div class="container">
<textarea id="markdown-input"></textarea>
<div id="preview"></div>
</div>
<button onclick="convertir()">Convertir</button>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
function convertir() {
var markdownText = document.getElementById("markdown-input").value;
var html = marked.parse(markdownText);
document.getElementById("preview").innerHTML = html;
}
</script>
</body>
</html> |