remove unused imports

This commit is contained in:
KitsuneCafe 2024-02-03 16:15:26 -05:00
parent 0cdfa876f9
commit 16479964c0

View file

@ -4,11 +4,9 @@ use once_cell::sync::Lazy;
use regex::{Captures, Regex, RegexBuilder}; use regex::{Captures, Regex, RegexBuilder};
use roxy_core::roxy::Parse; use roxy_core::roxy::Parse;
use syntect::{ use syntect::{
easy::HighlightLines, highlighting::ThemeSet,
highlighting::{Style, ThemeSet}, html::highlighted_html_for_string,
html::{highlighted_html_for_string, styled_line_to_highlighted_html}, parsing::SyntaxSet
parsing::SyntaxSet,
util::{as_24_bit_terminal_escaped, LinesWithEndings},
}; };
const CODE_BLOCK_RE: Lazy<Regex> = Lazy::new(|| { const CODE_BLOCK_RE: Lazy<Regex> = Lazy::new(|| {