File size: 792 Bytes
d992149
ed14eea
d992149
ed14eea
 
e88b4df
 
ed14eea
e88b4df
 
ed14eea
 
e88b4df
d992149
 
ed14eea
e88b4df
ed14eea
e88b4df
ed14eea
 
 
e88b4df
ed14eea
e88b4df
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
<!DOCTYPE html>
<html>
<head>
  <title>Convertisseur Markdown</title>
  <style>
    table {
      border-collapse: collapse; /* Pour fusionner les bordures des cellules */
    }
    th, td {
      border: 1px solid black; /* Ajoute une bordure à toutes les cellules */
    }
  </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>