#html #html-macro #set #belongs #rusty-html

nightly rusty-html-macros

此包属于 rusty-html 包,并实现了 set 包的宏。

1个不稳定版本

0.1.0 2022年6月1日

#6 in #belongs


2 个包中使用 (通过 rusty-html)

MIT 许可证

5KB
94 代码行 (不含注释)

rusty-html

Rusty HTML 是一个 HTML 模板/网络(正在开发中)框架。

示例

use rusty_html::html;

fn main() {
    let links = [
        ("https://wikipedia.com", "Wikipedia"),
        ("https://twitter.com", "Twitter"),
        ("https://youtube.com", "Youtube"),
    ];

    let html = html!(
        <div>
        {
            for (link, link_title) in links {
                <a src={link}>{link_title}</a>
            }
        }
        </div>
    );

    println!("{html}");
}

许可证:MIT

许可证:MIT

依赖

~83KB