Crates.io | zen-rs |
lib.rs | zen-rs |
version | |
source | src |
created_at | 2025-01-08 21:09:43.230783+00 |
updated_at | 2025-01-13 01:54:37.093694+00 |
description | A library for generating non-interactive content like cards or files. |
homepage | https://github.com/TOwInOK/zen-rs |
repository | https://github.com/TOwInOK/zen-rs |
max_upload_size | |
id | 1509084 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
<div>
)<a>
)Full support for all available properties in all renderers
Interactivity (e.g., CSS animations)
Script support for HTML
use zen_rs::{
aspects::Align, components::{github::github_outlined, h::mono_text_xl, Components}, layouts::html::HtmlBuilder, vstack
};
fn main() {
let cc = complited_component();
let html = HtmlBuilder::default().component(cc).build_as_html();
std::fs::write("gh_not_ph.html", html).unwrap();
}
fn gh_not_ph() -> impl Into<Components> {
vstack((
vstack((
vstack((
github_outlined(),
mono_text_xl("gh"),
mono_text_xl("not ph"),
))
.background_color((30, 200, 100, 100))
.gap(4)
.padding(16)
.align_content(zen_rs::aspects::Align::Center)
.flex(),))
.flex()
.border_size_t(2)
.border_size_b(2)
.border_color((255, 255, 255, 100))
.border_radius(18),
))
.flex()
.width_full()
.height_full()
.align_items(Align::Center)
.align_content(Align::Center)
.background_color((0, 0, 0, 100))
}
that we got
If you would like to contribute, feel free to open an issue in the repository.
This project is licensed under the MIT License.