-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
124 lines (114 loc) · 2.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html
lang="en"
data-bs-theme="dark"
>
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-79JKH4L3SC"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-79JKH4L3SC');
</script>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Vue 3 CodeBlock</title>
<meta
name="description"
content="Vue 3 CodeBlock - Highlight your code with ease using this syntax highlighting component powered by PrismJS or Highlight.js."
/>
<meta
name="keywords"
content="vue-code-block, code, pre, highlight, syntax, vue, vue3, prism, prismjs, highlightjs, highlight.js, component, javascript, typescript, neon bunny, webdevnerdstuff, wdns"
/>
<meta
name="author"
content="WebDevNerdStuff & Bunnies... lots and lots of bunnies!"
/>
<meta
name="robots"
content="index, follow"
/>
<meta
name="googlebot"
content="index, follow"
/>
<meta
name="theme-color"
content="#f01d7f"
/>
<meta
property="og:locale"
content="en_US"
>
<meta
property="og:type"
content="website"
>
<meta
property="og:title"
content="Vue 3 CodeBlock"
>
<meta
property="og:description"
content="Vue 3 CodeBlock - Highlight your code with ease using this syntax highlighting component powered by PrismJS or Highlight.js."
>
<meta
property="og:url"
content="https://webdevnerdstuff.github.io/vue-code-block/"
>
<meta
property="og:image:width"
content="1200"
/>
<meta
property="og:image:height"
content="630"
/>
<link
rel="preconnect"
href="https://fonts.googleapis.com"
>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
>
<link
href="https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@300;400;600&family=Open+Sans&display=swap"
rel="stylesheet"
>
<link
rel="icon"
type="image/svg+xml"
href="/vue.svg"
/>
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/main.ts"
></script>
<script
data-name="BMC-Widget"
data-cfasync="false"
src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js"
data-id="webdevnerdstuff"
data-description="Support me on Buy me a coffee!"
data-message=""
data-color="#4caf50"
data-position="Right"
data-x_margin="18"
data-y_margin="18"
></script>
</body>
</html>