File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 35
35
" to-markdown.js"
36
36
],
37
37
"dependencies" : {
38
- "mdast-util-to-markdown" : " ^0.3 .0"
38
+ "mdast-util-to-markdown" : " ^0.4 .0"
39
39
},
40
40
"devDependencies" : {
41
41
"mdast-util-from-markdown" : " ^0.7.0" ,
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ test('mdast -> markdown', function (t) {
153
153
} ,
154
154
{ extensions : [ taskListItem . toMarkdown ] }
155
155
) ,
156
- '* [x] a' ,
156
+ '* [x] a\n ' ,
157
157
'should serialize a checked list item'
158
158
)
159
159
@@ -166,7 +166,7 @@ test('mdast -> markdown', function (t) {
166
166
} ,
167
167
{ extensions : [ taskListItem . toMarkdown ] }
168
168
) ,
169
- '* [ ] b' ,
169
+ '* [ ] b\n ' ,
170
170
'should serialize an unchecked list item'
171
171
)
172
172
@@ -178,7 +178,7 @@ test('mdast -> markdown', function (t) {
178
178
} ,
179
179
{ extensions : [ taskListItem . toMarkdown ] }
180
180
) ,
181
- '* c' ,
181
+ '* c\n ' ,
182
182
'should serialize an normal list item'
183
183
)
184
184
@@ -199,7 +199,7 @@ test('mdast -> markdown', function (t) {
199
199
} ,
200
200
{ extensions : [ taskListItem . toMarkdown ] }
201
201
) ,
202
- '* [d]: definition\n\n e' ,
202
+ '* [d]: definition\n\n e\n ' ,
203
203
'should ignore `checked` if the head is not a paragraph'
204
204
)
205
205
You can’t perform that action at this time.
0 commit comments