keyboard: fix empty key titles
[sheet.git] / tools / stripcss
1 #!/usr/bin/env perl
2 use 5.014;
3 use warnings;
4
5 while (<>) {
6         s!\s*/\*.*\*/\Z!!;  # comments
7         s/^\s*//;   # indentation and empty lines
8         s/\h+/ /g;  # alignment
9         s/:\K\h//;  # separators
10         print;
11 }