mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
18 lines
359 B
HTML
18 lines
359 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<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>
|
|
|
|
let mdText = `
|
|
{MD_TEXT}
|
|
`
|
|
document.getElementById('content').innerHTML = marked.parse(mdText)
|
|
</script>
|
|
</body>
|
|
</html> |