smartdown
Version:
A library for translating, rendering and interacting with Smartdown documents. Smartdown is an extension of Markdown that provides richer media support and reactive programming capability.
39 lines (33 loc) • 943 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>Simple Smartdown Viewer</title>
<link
rel=stylesheet
href="https://smartdown.site/lib/smartdown.css">
<script
src="https://smartdown.site/lib/smartdown.js">
</script>
</head>
<body
style="margin:0;padding:0;background:white;">
<div
class="container-fluid"
style="margin:0;padding:5px;">
<div
class="smartdown-container"
id="smartdown-output">
</div>
</div>
<script src="https://smartdown.site/lib/starter.js"></script>
<script>
window.smartdownBaseURL = 'https://smartdown.site/';
window.smartdownDefaultHome = 'YouTube';
window.smartdownStarter();
</script>
</body>
</html>