Align your code with the Alignment package for Sublime Text
I’m having students in my web development courses use Sublime Text as their editor. As a result, I’ve been digging deep into Sublime Text & writing up what I’ve learned on my personal website, which I use with some of my classes. This post is a pointer to some of those pages.
I added a page about another cool Sublime Text package: Alignment. It’s kind of hard to explain without seeing the code. Basically, it makes it super easy to turn this:
.test {
font-family: Georgia, serif;
font-size: 16px;
font-style: normal;
}
Into this nicely-aligned beauty:
.test {
font-family : Georgia, serif;
font-size : 16px;
font-style : normal;
}
If you like keeping your code nice & neat & organized, you’ll want to get the Alignment package for Sublime Text.