Skip to content

Commit

Permalink
fix: proper formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
c43721 committed Nov 8, 2024
1 parent 56906ce commit 523e7ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/html/usage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ use serde::Serialize;
use std::borrow::Cow;

lazy_static! {
+ static ref IDENTIFIER_RE: Regex =
+ Regex::new(r"^[0-9]|[^a-zA-Z0-9$_]").unwrap();
static ref IDENTIFIER_RE: Regex =
Regex::new(r"^[0-9]|[^a-zA-Z0-9$_]").unwrap();
}

fn render_css_for_usage(name: &str) -> String {
Expand Down

0 comments on commit 523e7ea

Please sign in to comment.