Merge branch 'master' into tsc

This commit is contained in:
Mu-An Chiou 2020-02-19 16:27:38 -05:00
Родитель f55ba0630b 2a59202e8b
Коммит edd2575bbb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CD0B1EEC7A35239E
1 изменённых файлов: 57 добавлений и 0 удалений

57
examples/index.html Normal file
Просмотреть файл

@ -0,0 +1,57 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>paste-markdown demo</title>
<style>
img, textarea { display: block; }
img, table, textarea { margin: 1em 0; }
</style>
</head>
<body>
<p>Test by selecting the elements and then either copy/paste or drag them into the textarea.</p>
<table border="1" cellpadding="5">
<thead>
<tr>
<th>name</th>
<th>origin</th>
</tr>
</thead>
<tbody>
<tr>
<td>hubot</td>
<td>github</td>
</tr>
<tr>
<td>bender</td>
<td>futurama</td>
</tr>
</tbody>
</table>
<table border="1" cellpadding="5" class="js-comment">
<thead>
<tr>
<th>name</th>
<th>origin</th>
</tr>
</thead>
<tbody>
<tr>
<td>this table will not be</td>
<td>converted to markdown</td>
</tr>
</tbody>
</table>
<img src="https://github.com/hubot.png" width="100" alt="hubot">
<textarea cols="50" rows="10"></textarea>
<script type="module">
// import subscribe from '../dist/index.esm.js'
import subscribe from 'https://unpkg.com/@github/paste-markdown/dist/index.esm.js'
subscribe(document.querySelector('textarea'))
</script>
</body>
</html>