This crate provides an element struct which can be displayed as HTML.
This crate is licensed under the MIT license
This crate has used a snippet from the TextWrap crate for indentation of the child elements.
```toml [dependencies] htmlificator = "0.2.1"
```
```rust use htmlificator::Element;
fn main() { let mut el = Element::new("Div", false); el.addclass("TestClass"); let mut h1 = Element::new("H1", false); h1.addtext("This is a heading!!"); el.addelement(h1); el.addcomment("A Comment"); let mut btn = Element::new("Button", true); btn.addattribute("text", "This is a Button"); el.addelement(btn); println!("{}", el) } ```