/* 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: 5/18/23 */ extern crate horrorshow; use epub::archive; use horrorshow::prelude::*; use horrorshow::helper::doctype; pub fn main(content: String) -> String{ println!("IF YOU CAN READ THIS, I HAVE ENTERED THE HTML MODULE"); let mut str_content = content; return str_content; }