-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
51 lines (39 loc) · 1.21 KB
/
demo.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
<!--
@license
Copyright (c) 2014 Thelma Project Authors. All rights reserved.
This code may only be used under the MIT license found at http://thelmanews.github.io/LICENSE.txt
The complete set of authors may be found at http://thelmanews.github.io//AUTHORS.txt
The complete set of contributors may be found at http://thelmanews.github.io/CONTRIBUTORS.txt
-->
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>th-text Demo</title>
<script src="../webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="../th-theme/th-theme.html">
<link rel="import" href="th-text.html">
</head>
<style type="text/css">
body {
background-color: #34393D;
font-family: 'serif';
}
</style>
<body unresolved>
<core-style ref="theme"></core-style>
<p>An example of using <code><th-text></code>:</p>
<th-text width="500" markdown="true">
# Level one header #
### Level three header ###
[I'm an inline-style link](https://www.google.com)
* This
* is
* a list
** BOLD **
*italic*
1. with
1. numbers
</th-text>
</body>
</html>