On 07.05.2011 02:36, Robert Huttinger wrote:
Without linking to a screen shot, it's hard to explain. But that is close. Yeah 
it may be a little more complicated but I was also hopping the might be a 
document reflow that would help.

Bo




This is a easy task for a perl filter. Put the following filter into ~/Library/Application Support/BBEdit/Unix Support/Unix Filters/css/pretty_css_format.pl

and run it over your css-file.


Greetings from sunny Munich


marek

***

#! /usr/bin/perl

use strict;
use warnings;

while (<>){

        s/([-a-z ]+:)\s+(.+)/sprintf("%-20s",$1) . "$2"/ie;
        print;
}

--
You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
<http://groups.google.com/group/bbedit?hl=en>
If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>

Reply via email to