27 lines
869 B
HTML
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>
|