1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-02-15 20:55:24 +01:00
slate/examples/test.html

43 lines
884 B
HTML
Raw Normal View History

<html>
<head>
<meta charset="utf-8" />
<title>Editor | Basic Example</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<main>
<div contenteditable>
<p>
2016-06-24 13:44:22 -07:00
<strong>Some <em>text.</em></strong>
</p>
<p>
2016-06-24 13:44:22 -07:00
<strong>Some <a href="google">text.</a></strong>
</p>
<p>
<strong>Some text.</strong>
</p>
<blockquote>
<p>
2016-06-24 13:44:22 -07:00
<strong>Some <a href="google">text.</a></strong>
</p>
<p>
2016-06-24 13:44:22 -07:00
<strong>Some text.</strong>
</p>
</blockquote>
<p></p>
<p></p>
<table border>
<tr>
<td>1</td>
<td>one</td>
</tr>
<tr>
<td>2</td>
<td>two</td>
</tr>
</table>
</div>
</main>
</body>
</html>