summaryrefslogtreecommitdiff
path: root/resources/views/marked.blade.php
blob: f1deefc12b128ee4ab4b5916e02e870b0eb7f29e (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
<!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">
        @vite('resources/js/app.js')
        <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
        <script src="/js/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>