-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample-rt.html
117 lines (117 loc) · 2.1 KB
/
sample-rt.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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>contenteditable</title>
<style type="text/css">
/* <![CDATA[ */
body {
font-family: sans-serif;
background-color: white;
color: black;
font-size: 0.9em;
}
h1, h2
{
border-bottom: 1px solid #D0D0D0;
}
p
{
margin-top: 0;
margin-bottom: 0.5em;
}
li
{
margin: 0;
padding: 0;
}
blockquote
{
padding-left: 2em;
margin-left: 0;
border-left: 1px solid #D0D0D0;
font-style: italic;
}
table
{
border-collapse: collapse;
}
th
{
vertical-align: bottom;
text-align: left;
background-color: #F0F0F0;
}
td
{
vertical-align: top;
}
td, th
{
border: 1px solid #D0D0D0;
padding: 0.5em;
}
td.wysiwyg-macro-body
{
margin: 0.5em;
background-color: #FFFFFF;
border-radius: 0.25em;
}
table.wysiwyg-macro
{
border-collapse: separate;
border: 1px solid #D0D0D0;
background-color: #F0F0F0;
width: 100%;
padding: 0.25em;
border-radius: 0.25em;
}
table.wysiwyg-macro:before
{
display: table-cell;
content: "{" attr(data-macro-name) "}";
border: none;
color: #606060;
background-color: #F0F0F0;
}
table.wysiwyg-macro[data-macro-parameters]:before
{
display: table-cell;
content: "{" attr(data-macro-name) ":" attr(data-macro-parameters) "}";
border: none;
color: #606060;
background-color: #F0F0F0;
}
table.wysiwyg-macro[data-macro-body-type = "PLAIN_TEXT"] > tbody > tr > td > pre
{
margin-top: 0;
margin-bottom: 0;
}
td.wysiwyg-macro-body:first-child > p
{
margin-top: 0;
}
td.wysiwyg-macro-body:last-child > p
{
margin-bottom: 0;
}
div.contentLayout > div.columnLayout > div.cell,
div.contentLayout > div.header,
div.contentLayout > div.footer
{
margin-top: 0.5em;
margin-bottom: 0.5em;
border: 2px dashed #CCCCCC;
border-radius: 0.25em;
padding: 0.25em;
}
/* ]]> */
</style>
</head>
<body contenteditable="true" onkeyup="parent.keyup(event)" onload="parent.initialize()">
<h1>Wikifier RT</h1><p>Paste content from the Confluence editor under the <strong>Rich text</strong> heading.</p>
</body>
</html>
</body>
</html>