blob: 2e8933b1b5172257c2c52b90a3baf20dbfdceb2f (
plain)
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
|
<html>
<head>
<style type="text/css"> p { margin: 5px 1em; width: 0; } </style>
</head>
<body>
<!-- U+2024 is ONE DOT LEADER -->
<p>abcdef․․․abcdef</p>
<p>abcdef․abcdef</p>
<p>abcdef․ abcdef</p>
<p>abcdef ․abcdef</p> <!-- no break after the leader in this case -->
<!-- U+2025 is TWO DOT LEADER -->
<p>abcdef‥‥‥abcdef</p>
<p>abcdef‥abcdef</p>
<p>abcdef‥ abcdef</p>
<p>abcdef ‥abcdef</p> <!-- no break after the leader in this case -->
<!-- U+2026 is HORIZONTAL ELLIPSIS -->
<p>abcdef………abcdef</p>
<p>abcdef…abcdef</p>
<p>abcdef… abcdef</p>
<p>abcdef …abcdef</p> <!-- no break after the ellipsis in this case -->
</body>
</html>
|