mirror of
https://gitlab.com/news-flash/article_scraper.git
synced 2025-07-07 16:15:32 +02:00
empty clean html fn
This commit is contained in:
parent
f427b7c36f
commit
3096f28aae
2 changed files with 6 additions and 0 deletions
5
article_scraper/src/clean.rs
Normal file
5
article_scraper/src/clean.rs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
use crate::full_text_parser::error::FullTextParserError;
|
||||||
|
|
||||||
|
pub fn clean_html(_html: &str) -> Result<String, FullTextParserError> {
|
||||||
|
unimplemented!();
|
||||||
|
}
|
|
@ -1,4 +1,5 @@
|
||||||
mod article;
|
mod article;
|
||||||
|
pub mod clean;
|
||||||
mod constants;
|
mod constants;
|
||||||
mod error;
|
mod error;
|
||||||
mod full_text_parser;
|
mod full_text_parser;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue