We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baec93f commit 9affbbdCopy full SHA for 9affbbd
test/test.js
@@ -300,6 +300,12 @@ describe('markdown-toolbbar-element', function() {
300
assert.equal('> |Butts|\n\nThe quick brown fox jumps over the lazy dog', visualValue())
301
})
302
303
+ it('quotes full line of text when you click the quote icon', function() {
304
+ setVisualValue('|The quick brown fox jumps over the lazy dog')
305
+ clickToolbar('md-quote')
306
+ assert.equal('> |The quick brown fox jumps over the lazy dog', visualValue())
307
+ })
308
+
309
it('prefixes newlines when quoting an existing line on an existing', function() {
310
setVisualValue('The quick brown fox jumps over the lazy dog|Butts|')
311
clickToolbar('md-quote')
0 commit comments