Files
biblioteca-de-contos/tests/index.html

15 lines
386 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Marked in the browser</title>
</head>
<body>
<div id="content"></div>
<script src="https://cdn.jsdelivr.net/npm/marked/lib/marked.umd.js"></script>
<script>
document.getElementById("content").innerHTML = marked.parse("");
</script>
</body>
</html>