puggers 0.1.2

CLI for converting HTML to Pug.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# puggers

`puggers` is the command-line interface for converting HTML files or stdin into Pug using `puggers-core`.

## Example

```sh
printf '<div class="card"><a href="/docs">Docs</a></div>' \
  | cargo run -p puggers -- \
      --trim-outer-document \
      --allow-attr class \
      --allow-attr href
```

```pug
div.card
  a(href="/docs") Docs
```