gist-it icon indicating copy to clipboard operation
gist-it copied to clipboard

Add strip leading whitespace/indent option

Open MadLittleMods opened this issue 11 years ago • 1 comments

It would be nice if you were slicing a block of code that was all indented in, to have an option that strips the common amount of whitespace from each line in order to perfectly left align it.

Maybe use the npm strip-indent package or this Python recipe for block formatting as some inspiration.

        foo: function() {
            var a = 1;
            return a;
        }

to

foo: function() {
    var a = 1;
    return a;
}

MadLittleMods avatar Apr 20 '15 01:04 MadLittleMods

+1, that would be very nice. :+1:

nighto avatar Apr 20 '15 16:04 nighto