-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 1.55 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Show relative links in the parent browsing context -->
<base target="_parent" />
<link rel="shortcut icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- <meta name="theme-color" content="#ffffff" /> -->
<link rel="manifest" href="manifest.webmanifest" />
<title>Metaframe: markdown</title>
<!-- <meta name="color-scheme" content="light only"> -->
<meta property="og:title" content="Markdown embedded in a URL"/>
<meta property="og:description" content="Write, render, embed and display markdown with the markdown metaframe."/>
<meta property="og:site_name" content="Metaframe: markdown"/>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0px;
border: 0;
/* No floating content on sides */
display: block;
/* background: none transparent; */
}
.transparent {
background: none transparent;
}
/* apply a natural box layout model to all elements, but allowing components to change */
/* https://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root" class="markdown-body"></div>
<script type="module" src="src/index.tsx"></script>
</body>
</html>