melhora no funcionamento da home

This commit is contained in:
2025-07-31 07:09:46 -03:00
parent 897e58b6ce
commit 31d2704ee2
7 changed files with 709 additions and 2 deletions

14
tests/index.html Normal file
View File

@@ -0,0 +1,14 @@
<!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>