jonschlinkert/pretty-remarkable

bug: should not remove leading whitespace on the first line of code in gfm

jonschlinkert opened this issue · 0 comments

currently, the following should have leading lines removed:

var foo = 'bar';

to be like this:

var foo = 'bar`'

But it should not turn this:

           var foo = 'bar';

into this:

var foo = 'bar`'