diff options
-rw-r--r-- | crates/ide/src/syntax_highlighting.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/ide/src/syntax_highlighting.rs b/crates/ide/src/syntax_highlighting.rs index d73ddf35b..086c1245e 100644 --- a/crates/ide/src/syntax_highlighting.rs +++ b/crates/ide/src/syntax_highlighting.rs | |||
@@ -1,11 +1,13 @@ | |||
1 | pub(crate) mod tags; | ||
2 | |||
1 | mod highlights; | 3 | mod highlights; |
2 | mod injector; | 4 | mod injector; |
3 | 5 | ||
4 | mod format; | 6 | mod format; |
5 | mod html; | ||
6 | mod injection; | 7 | mod injection; |
7 | mod macro_rules; | 8 | mod macro_rules; |
8 | pub(crate) mod tags; | 9 | |
10 | mod html; | ||
9 | #[cfg(test)] | 11 | #[cfg(test)] |
10 | mod tests; | 12 | mod tests; |
11 | 13 | ||