1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-02-01 13:18:29 +01:00
slate/examples/test.html

53 lines
1.3 KiB
HTML

<html>
<head>
<meta charset="utf-8" />
<title>Content Editable Test</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<main>
<div contenteditable>
<p>
<strong>Some <em>text.</em></strong>
</p>
<p>
<strong>Some <a href="google">text.</a></strong>
</p>
<p>
<strong>Some text.</strong>
</p>
<img src="https://img.washingtonpost.com/wp-apps/imrs.php?src=https://img.washingtonpost.com/news/speaking-of-science/wp-content/uploads/sites/36/2015/10/as12-49-7278-1024x1024.jpg&w=1484" />
<blockquote>
<p>
<strong>Some <a href="google">text.</a></strong>
</p>
<p>
<strong>Some text.</strong>
</p>
</blockquote>
<p></p>
<p></p>
<div contenteditable="false">
<div contenteditable>
<input value="test" />
</div>
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
<table border>
<tr>
<td>1</td>
<td>one</td>
</tr>
<tr>
<td>2</td>
<td>two</td>
</tr>
</table>
</div>
</main>
</body>
</html>