https://github.com/grayfallstown/html2maud
Library / CLI / GUI to convert html to maud template code
https://github.com/grayfallstown/html2maud
Last synced: about 2 months ago
JSON representation
Library / CLI / GUI to convert html to maud template code
- Host: GitHub
- URL: https://github.com/grayfallstown/html2maud
- Owner: grayfallstown
- License: mit
- Created: 2023-01-03T08:04:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-25T14:22:10.000Z (over 1 year ago)
- Last Synced: 2025-03-30T05:18:39.815Z (2 months ago)
- Language: Rust
- Size: 1.78 MB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# html2maud
Library / CLI / GUI to convert html to [maud]() template code.
# Online version
[html2maud online](https://grayfallstown.github.io/html2maud/)
# Binary Usage
`cargo install html2maud-bin`
`html2maud-bin --in my.html --out my.maud`
`cat my.html | html2maud-bin --stdin`
```
Usage: html2maud [OPTIONS]Options:
-i, --in
-o, --out
-s, --stdin
-h, --help Print help information
html2maud-bin without parameters will start the GUI
```# GUI
run `html2maud-bin` without parameters and a basic [tauri]("https://tauri.app/) + [pâro](https://github.com/grayfallstown/paro-rs) GUI will start, allowing for a faster workflow.
# Library Usage
```
use html2maud::*;fn main() {
let html = "";Paragraph
let maud = html2maud(html);
println("{}", maud);
}
```# LICENCE
MIT or Apache 2