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

app html2maud-bin

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

13 个版本

0.1.12 2023 年 11 月 14 日
0.1.11 2023 年 10 月 20 日
0.1.10 2023 年 1 月 27 日

#1379开发工具

MIT/Apache

430KB
505

html2maud

将 HTML 转换为 maud 模板代码的库/CLI/GUI。

在线版本

html2maud online

二进制使用

cargo安装 html2maud-bin

html2maud-bin--inmy.html--out 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

GUI

运行 html2maud-bin 无参数,一个基本的 tauri + pâro GUI 将启动,允许更快的开发流程。

库使用

use html2maud::*;

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

LICENCE

MIT 或 Apache 2

依赖项

~26–66MB
~1M SLoC