forked from SilverHoodCorp/polar-bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
52 lines (36 loc) · 822 Bytes
/
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
<html>
<head>
<style>
</style>
</head>
<body>
<style>
.note-edit::before {
content: '[[';
color: grey;
}
.note-edit::after {
content: ']]';
color: grey;
}
</style>
<b>With span and nbsp;</b>
<div id="content" contenteditable="true">
this is <b>the</b> content <span class="note-edit"> </span>
</div>
<br/>
<br/>
<b>With span and thin space</b>
<div id="content3" contenteditable="true">
this is <b>the</b> content <span class="note-edit">  </span>
</div>
<br/>
<br/>
<div id="content2" contenteditable="true">
this is <b>the</b> content <span contenteditable="false">[[</span> <span contenteditable="false">]]</span>
</div>
<p style="background-color: yellow; ">
this is a fake highlight
</p>
</body>
</html>