web preview + finish-ish markdown
ordered lists, superscript, tables and some fixes
This commit is contained in:
26
index.html
Normal file
26
index.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user