Rustfmt update for nightly formatter

pull/78/head
Emi Simpson 5 years ago
parent 76ccff80f9
commit 028beb821c
No known key found for this signature in database
GPG Key ID: 68FAB2E2E6DFC98B

@ -35,8 +35,7 @@ use url::{ParseError, Url};
/// Note, however, that this does not perform any validation of the found URL.
/// Malformed CSS could lead to an invalid URL being present. It is therefor
/// recomended that the URL is manually validated.
const CSS_URL_REGEX_STR: &str =
r###"(?:(?:(?P<stylesheet>@import)|(?P<font>src\s*:))\s+)?url\((?P<to_repl>['"]?(?P<url>[^"'\)]+)['"]?)\)"###;
const CSS_URL_REGEX_STR: &str = r###"(?:(?:(?P<stylesheet>@import)|(?P<font>src\s*:))\s+)?url\((?P<to_repl>['"]?(?P<url>[^"'\)]+)['"]?)\)"###;
lazy_static! {
static ref HAS_PROTOCOL: Regex = Regex::new(r"^[a-z0-9]+:").unwrap();

Loading…
Cancel
Save