bibliofile/src/html_module.rs

20 lines
384 B
Rust
Raw Normal View History

/*
Program: Bibliofile
Language: Rustc 1.69.0
ide: CLion
Operating system: Fedora 38/WSL
Purpose: This class is meant to process and return HTML formatted text as strings.
Last edited: 6/28/23
*/
use scraper::{Html, Selector};
pub fn main(content: String) -> String {
2023-05-20 23:44:13 +00:00
let str_content = content;
println!("{}", str_content);
let page = str_content;
return page;
}