26 lines
612 B
HTML
26 lines
612 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/marked.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"></script>
|
|
<script>
|
|
$.ajax(
|
|
{
|
|
type:"get",
|
|
url:"./test.md",
|
|
dataType:"html",
|
|
success:function(data){
|
|
document.getElementById('content').innerHTML =
|
|
marked.parse(data);
|
|
}
|
|
}
|
|
)
|
|
|
|
</script>
|
|
</body>
|
|
</html> |