-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepl.html
More file actions
59 lines (57 loc) · 2.94 KB
/
repl.html
File metadata and controls
59 lines (57 loc) · 2.94 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="markdown, html, website, blog, builder, marks, website builder, rendering engine">
<meta name="description" content="Marks, The Markup language for blazing fast web page rendering">
<!--Insert OG Markup -->
<meta prefix="og: http://ogp.me/ns#" property="og:type" content="text/html" />
<meta prefix="og: http://ogp.me/ns#" property="og:title" content="Marks, The Markup language for blazing fast web page rendering" />
<meta prefix="og: http://ogp.me/ns#" property="og:description" content="Markup text... the way it always should've been...
Marks is a markup language that aims to keep the simplicity of Markdown,
and brings a world of possibilities by removing its limits.." />
<meta prefix="og: http://ogp.me/ns#" property="og:image" content="https://marksjs.com/assets/website.png" />
<meta prefix="og: http://ogp.me/ns#" property="og:url" content="https://marksjs.com" />
<meta name="author" content="François Skorzec">
<title>Marks, The Markup language for blazing fast web page rendering</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" />
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous"> -->
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script> -->
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script crossorigin src="/index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.55.0/codemirror.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.55.0/mode/markdown/markdown.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.55.0/codemirror.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.55.0/theme/monokai.min.css">
<link rel="stylesheet" href="/css/app.css">
<style>
ul.emojis {
display: table;
padding: 0 0 1em 1.5em;
font-family: monospace;
}
ul.emojis > li {
list-style: none;
float: left;
width: 270px;
padding-right: 25px;
overflow-wrap: break-word;
margin-bottom: .5em;
}
ul.emojis >li .hover { margin-left: -4px; }
ul.emojis > li img {
vertical-align: middle;
height: 22px;
width: 22px;
}
</style>
</style>
</head>
<body>
<div id="app">
</div>
<script src="/js/bundle.js"></script>
</body>
</html>