Rustfmt update for nightly formatter
This commit is contained in:
parent
76ccff80f9
commit
028beb821c
1 changed files with 1 additions and 2 deletions
|
@ -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…
Reference in a new issue