-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathumd-test.html
63 lines (57 loc) · 3.03 KB
/
umd-test.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width" />
<title>UMD test</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/quasar.min.css" rel="stylesheet" type="text/css" />
<link href="dist/index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="q-app">
<q-layout view="lHh Lpr fff">
<q-header class="glossy bg-primary">
<q-toolbar>
<q-toolbar-title> QMarkdown v{{ version }} </q-toolbar-title>
<div>Quasar v{{ $q.version }}</div>
</q-toolbar>
</q-header>
<q-page-container>
<q-page padding>
<q-markdown src="This is a `test`."></q-markdown>
<q-markdown>
::: here be **dragons** with a `token` and a [link](https://quasar.dev) ::: ::: info here be **dragons** with a `token` and a [link](https://quasar.dev) ::: ::: info With Custom Title here be **dragons** with a `token` and a [link](https://quasar.dev) ::: ::: tip here be **dragons**
with a `token` and a [link](https://quasar.dev) ::: ::: warning here be **dragons** with a `token` and a [link](https://quasar.dev) ::: ::: danger here be **dragons** with a `token` and a [link](https://quasar.dev) ::: ::: danger Embedable here be **dragons** with a `token` and a
[link](https://quasar.dev) ::: warning here be **dragons** with a `token` and a [link](https://quasar.dev) :::::: Indented code Inline `code` // Some comments line 1 of code line 2 of code line 3 of code Block code "fences" ``` Sample text here... ``` Syntax highlighting ```js var foo
= function (bar) { return bar++; }; console.log(foo(5)); ```
</q-markdown>
<ul class="q-mb-lg">
<li>In /ui, run: "yarn build"</li>
<li class="text-red">You need to build & refresh page on each change manually.</li>
<li>Use self-closing tags only!</li>
<li>Example: <my-component></my-component></li>
</ul>
</q-page>
</q-page-container>
</q-layout>
</div>
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/quasar.ie.polyfills.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@^2.0.0/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/quasar.umd.min.js"></script>
<script src="dist/index.umd.js"></script>
<script>
new Vue({
el: '#q-app',
data: function () {
return {
version: QMarkdown.version,
};
},
});
</script>
</body>
</html>