A feature to remove elements of html pages based on css selectors have been added. The removal of link element that load external js have been added.
8 lines
168 B
Rust
8 lines
168 B
Rust
#[derive(thiserror::Error, Debug)]
|
|
pub enum Error {
|
|
#[error(transparent)]
|
|
Other(#[from] anyhow::Error),
|
|
}
|
|
|
|
pub type Result<T> = core::result::Result<T, Error>;
|