Update to make help modal and text complete hint using consistent reminder text

This commit is contained in:
Wu Cheng-Han 2016-08-01 16:00:37 +08:00
parent 46ccf2d0a3
commit 881e92b05a
2 changed files with 17 additions and 9 deletions

View file

@ -92,7 +92,7 @@ var supportReferrals = [
search: '[]' search: '[]'
}, },
{ {
text: '[reference]: url "title"', text: '[reference]: https:// "title"',
search: '[]:' search: '[]:'
}, },
{ {
@ -100,7 +100,7 @@ var supportReferrals = [
search: '[^]' search: '[^]'
}, },
{ {
text: '[^footnote reference]: url "title"', text: '[^footnote reference]: https:// "title"',
search: '[^]:' search: '[^]:'
}, },
{ {
@ -112,7 +112,7 @@ var supportReferrals = [
search: '[][]' search: '[][]'
}, },
{ {
text: '[link text](url "title")', text: '[link text](https:// "title")',
search: '[]()' search: '[]()'
}, },
{ {
@ -120,11 +120,11 @@ var supportReferrals = [
search: '![][]' search: '![][]'
}, },
{ {
text: '![image alt](url "title")', text: '![image alt](https:// "title")',
search: '![]()' search: '![]()'
}, },
{ {
text: '![image alt](url "title" =WidthxHeight)', text: '![image alt](https:// "title" =WidthxHeight)',
search: '![]()' search: '![]()'
}, },
{ {

View file

@ -52,8 +52,16 @@
<td># Header</td> <td># Header</td>
</tr> </tr>
<tr> <tr>
<td><ul><li>Unordered List</li></ul><ol><li>Ordered List</li></ol><ul><li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled><label></label>Todo List</li></ul></td> <td><ul><li>Unordered List</li></ul></td>
<td>- Unordered List<br>1. Ordered List<br>- [ ] Todo List</td> <td>- Unordered List</td>
</tr>
<tr>
<td><ol><li>Ordered List</li></ol></td>
<td>1. Ordered List</td>
</tr>
<tr>
<td><ul><li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled><label></label>Todo List</li></ul></td>
<td>- [ ] Todo List</td>
</tr> </tr>
<tr> <tr>
<td><blockquote> Blockquote</blockquote></td> <td><blockquote> Blockquote</blockquote></td>
@ -89,11 +97,11 @@
</tr> </tr>
<tr> <tr>
<td><a>Link</a></td> <td><a>Link</a></td>
<td>[title](http://)</td> <td>[link text](https:// "title")</td>
</tr> </tr>
<tr> <tr>
<td>Image</td> <td>Image</td>
<td>![alt](http:// "title")</td> <td>![image alt](https:// "title")</td>
</tr> </tr>
<tr> <tr>
<td><code>Code</code></td> <td><code>Code</code></td>