Skip to content

Commit 881e92b

Browse files
committed
Update to make help modal and text complete hint using consistent reminder text
1 parent 46ccf2d commit 881e92b

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

public/js/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ var supportReferrals = [
9292
search: '[]'
9393
},
9494
{
95-
text: '[reference]: url "title"',
95+
text: '[reference]: https:// "title"',
9696
search: '[]:'
9797
},
9898
{
9999
text: '[^footnote link]',
100100
search: '[^]'
101101
},
102102
{
103-
text: '[^footnote reference]: url "title"',
103+
text: '[^footnote reference]: https:// "title"',
104104
search: '[^]:'
105105
},
106106
{
@@ -112,19 +112,19 @@ var supportReferrals = [
112112
search: '[][]'
113113
},
114114
{
115-
text: '[link text](url "title")',
115+
text: '[link text](https:// "title")',
116116
search: '[]()'
117117
},
118118
{
119119
text: '![image alt][reference]',
120120
search: '![][]'
121121
},
122122
{
123-
text: '![image alt](url "title")',
123+
text: '![image alt](https:// "title")',
124124
search: '![]()'
125125
},
126126
{
127-
text: '![image alt](url "title" =WidthxHeight)',
127+
text: '![image alt](https:// "title" =WidthxHeight)',
128128
search: '![]()'
129129
},
130130
{

public/views/help-modal.ejs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,16 @@
5252
<td># Header</td>
5353
</tr>
5454
<tr>
55-
<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>
56-
<td>- Unordered List<br>1. Ordered List<br>- [ ] Todo List</td>
55+
<td><ul><li>Unordered List</li></ul></td>
56+
<td>- Unordered List</td>
57+
</tr>
58+
<tr>
59+
<td><ol><li>Ordered List</li></ol></td>
60+
<td>1. Ordered List</td>
61+
</tr>
62+
<tr>
63+
<td><ul><li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled><label></label>Todo List</li></ul></td>
64+
<td>- [ ] Todo List</td>
5765
</tr>
5866
<tr>
5967
<td><blockquote> Blockquote</blockquote></td>
@@ -89,11 +97,11 @@
8997
</tr>
9098
<tr>
9199
<td><a>Link</a></td>
92-
<td>[title](http://)</td>
100+
<td>[link text](https:// "title")</td>
93101
</tr>
94102
<tr>
95103
<td>Image</td>
96-
<td>![alt](http:// "title")</td>
104+
<td>![image alt](https:// "title")</td>
97105
</tr>
98106
<tr>
99107
<td><code>Code</code></td>

0 commit comments

Comments
 (0)