Files
Makoto-Markdown-to-HTML/index.html
jetstream0 d454a1f8ea web preview + finish-ish markdown
ordered lists, superscript, tables
and some fixes
2023-06-09 23:15:52 -07:00

27 lines
869 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Makoto Markdown Editor</title>
<link href="/styles/style.css" rel="stylesheet">
<link href="/styles/makoto.css" rel="stylesheet">
</head>
<body>
<div id="grid-container">
<div id="editor-container" class="section">
<!--<textarea id="editor" placeholder="Type in some markdown..."></textarea>-->
<ol id="editor" contenteditable>
<li>markdown goes here...</li>
</ol>
</div>
<div id="preview-container" class="section">
<label for="dark-theme-toggle">Dark Theme</label><input id="dark-theme-toggle" type="checkbox">
<div id="rendered-text">
</div>
</div>
</div>
<script src="/web.js" type="module"></script>
</body>
</html>