#convert-html #maud #html #template #html-templating

html2maud

html2maud 是一个库/命令行工具,用于将 HTML 转换为 maud 模板代码

9 个版本

0.1.11 2024年2月25日
0.1.10 2023年11月14日
0.1.9 2023年1月16日

#451开发工具

每月 下载 36
html2maud-bin 中使用

MIT/Apache

9KB
144

html2maud

库/命令行工具/图形用户界面,用于将 HTML 转换为 maud 模板代码。

在线版本

html2maud 在线

二进制文件使用

cargo安装 html2maud-bin

html2maud-bin--我的.html--输出到 my.maud

cat my.html|html2maud-bin--stdin

Usage: html2maud [OPTIONS]

Options:
  -i, --in <input html file>
  -o, --out <output maud file>
  -s, --stdin
  -h, --help                    Print help information
html2maud-bin without parameters will start the GUI

图形用户界面

运行 html2maud-bin 不带参数,如果没有参数,一个基本的 tauri + pâro 图形用户界面将会启动,允许更快的流程。

库使用

use html2maud::*;

fn main() {
    let html = "<div><p>Paragraph</p></div>";
    let maud = html2maud(html);
    println("{}", maud);
}

许可

MIT 或 Apache 2

依赖

~2.3–3.5MB
~57K SLoC