We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This was developed originally in HTTP-mode for for enveloper, but it could be useful as a command-line app too.
Idea of usage:
# Sales invoice. Order no {{ order.number }} | Item | Price | Qty | Total | | ---- | ----- | --- | ----- | {% for item in order.items %} | {{ item.title }} | {{ item.price }} | {{ item.qty }} | {{ item.total }} | {% endfor %}
cat invoice.pdf.md.twig \ | pipeprint \ --input @invoide.pdf.md.twig \ --engine=twig \ --parameters='{"order": {"number": "14", "items": [{"title": "widget", "price": "£5.00", "qty": 4, "total": "£20.00"]}' \ | pipeprint --engine=markdown \ | pipeprint --engine=wkhtmltopdf```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This was developed originally in HTTP-mode for for enveloper, but it could be useful as a command-line app too.
Idea of usage:
The text was updated successfully, but these errors were encountered: