We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c5e2eb commit e18b79fCopy full SHA for e18b79f
1 file changed
crates/inky-cli/src/build.rs
@@ -4,8 +4,7 @@ use std::sync::LazyLock;
4
use colored::Colorize;
5
use regex::Regex;
6
7
-static RE_COMMENT: LazyLock<Regex> =
8
- LazyLock::new(|| Regex::new(r"(?s)<!--.*?-->").unwrap());
+static RE_COMMENT: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"(?s)<!--.*?-->").unwrap());
9
static RE_TABLE_TAGS: LazyLock<Regex> =
10
LazyLock::new(|| Regex::new(r"(?i)(</?(table|tbody|tr|td|th)[\s>])").unwrap());
11
static RE_CLOSING_TAGS: LazyLock<Regex> =
0 commit comments