puggers 0.1.2

CLI for converting HTML to Pug.
puggers-0.1.2 is not a library.

puggers

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

Example

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