Files
openide/python/pluginResources/packaging/md.template.html
Nikita.Ashihmin 05c9e88933 PY-72961 Packaging: show numpy info and other md descriptions
GitOrigin-RevId: 8b25964eeae581e09dc928a864b9c4d7693f7d48
2024-06-01 08:50:40 +04:00

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>