Skip to main content

DOCTYPE

Constant DOCTYPE 

Source
pub const DOCTYPE: Raw<&str>;
Expand description

The <!DOCTYPE html> string literal.

ยงExample

use gen_html::{DOCTYPE, html};

html! {
    (DOCTYPE)
    h1 { "hello world" }
}