1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
/*
This source code file is distributed subject to the terms of the Mozilla Public License v2.0.
A copy of this license can be found in the `licenses` directory at the root of this project.
*/
//! A small set of data types for producing HTML code.
#![allow(clippy::useless_format)]

#[macro_use]
extern crate derivative;

pub mod attributes;
#[cfg(feature = "with_yew")]
pub mod into_vnode;
pub mod prelude;
pub mod tags;
pub mod text;
#[macro_use]
mod macros;
pub(crate) mod utils;
#[macro_use]
pub(crate) mod docs;