blob: 801373845b215dbcec98d8ff50e23fbec4465900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="playing around with markup">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<link rel="stylesheet" type="text/css" href="static/reset.css">-->
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://unpkg.com/htmx.org@2.0.1"></script>
<script src = "https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script type = "module" src = "marked.js"></script>
<!--<base href = "http://192.168.4.32:9002/">-->
<!--<base href = "http://localhost:9002/">-->
<title>markup playground</title>
</head>
<body>
<main>
</main>
<br>
<textarea id = "input_text" cols = "80" rows = "4"></textarea>
<button id = "button_save" >Save Markup</button>
<div id="error"></div>
</body>
<footer>
<p>© 2024 Thomas Grothe</p>
</footer>
</html>
|