use CSS::Parser::Regexp; use Data::Dumper; $\ = "\n"; my $css = <<CSS .someclass { color: limegreen; font-size: 12pt; } CSS ; my $p = CSS::Parser::Regexp->new; $p ...
While working on PR #1159, I found myself constantly refining how I checked for the CSS <number> value and often having to replace the same pattern in multiple places of the larger regex pattern for ...