https://github.com/michaelvanstraten/rusty-html
This crate allows for Jsx html inline like syntax in rust
https://github.com/michaelvanstraten/rusty-html
jsx-syntax rust rust-macros template-engine
Last synced: 11 months ago
JSON representation
This crate allows for Jsx html inline like syntax in rust
- Host: GitHub
- URL: https://github.com/michaelvanstraten/rusty-html
- Owner: michaelvanstraten
- License: mit
- Created: 2022-02-28T10:58:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-10T19:32:03.000Z (over 3 years ago)
- Last Synced: 2024-12-08T21:08:42.700Z (over 1 year ago)
- Topics: jsx-syntax, rust, rust-macros, template-engine
- Language: Rust
- Homepage: https://docs.rs/rusty-html/
- Size: 74.6 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# rusty-html
Rusty HTML is a html-templating/web(in progress) framework.
### Example
```rust
use rusty_html::html;
fn main() {
let links = [
("https://wikipedia.com", "Wikipedia"),
("https://twitter.com", "Twitter"),
("https://youtube.com", "Youtube"),
];
let html = html!(
);
println!("{html}");
}
```
License: MIT
License: MIT