tidos 0.7.6

Tidos is a component framework that can be served by any web framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use tidos::view;

fn toggle_attribute_implicit_variable_name() {
	assert_eq!(
		&view!{
			<input type="radio" name="day" value="monday" :checked="not a bool" />
		},
		r#"<input type="radio" name="day" value="monday" checked />"#
	)
}

fn main() {}