use std::collections::HashMap;
pub struct HtmlRenderer {
config: HashMap<String, String>,
}
impl HtmlRenderer {
pub fn new() -> Self {
Self { config: HashMap::new() }
}
pub fn render(&self, content: &str) -> String {
content.to_string()
}
}
impl Default for HtmlRenderer {
fn default() -> Self {
Self::new()
}
}