From 3096f28aae48d79355e03833235d9784c0b694bc Mon Sep 17 00:00:00 2001 From: Jan Lukas Gernert Date: Sun, 16 Apr 2023 22:00:00 +0200 Subject: [PATCH] empty clean html fn --- article_scraper/src/clean.rs | 5 +++++ article_scraper/src/lib.rs | 1 + 2 files changed, 6 insertions(+) create mode 100644 article_scraper/src/clean.rs diff --git a/article_scraper/src/clean.rs b/article_scraper/src/clean.rs new file mode 100644 index 0000000..d1f5951 --- /dev/null +++ b/article_scraper/src/clean.rs @@ -0,0 +1,5 @@ +use crate::full_text_parser::error::FullTextParserError; + +pub fn clean_html(_html: &str) -> Result { + unimplemented!(); +} diff --git a/article_scraper/src/lib.rs b/article_scraper/src/lib.rs index 9e14fb8..e151eb7 100644 --- a/article_scraper/src/lib.rs +++ b/article_scraper/src/lib.rs @@ -1,4 +1,5 @@ mod article; +pub mod clean; mod constants; mod error; mod full_text_parser;