Skip to content

Commit 84ffefb

Browse files
authored
Merge pull request #27 from ndu2/ES6ify
Es6ify
2 parents a59818d + 89fc50b commit 84ffefb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+5207
-4660
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ gtt report "kriskbx/example-project" "example-group/example-project"
5959
gtt report --output=table "kriskbx/example-project"
6060
gtt report --output=markdown "kriskbx/example-project"
6161
gtt report --output=csv "kriskbx/example-project"
62-
gtt report --output=pdf --file=test.pdf "kriskbx/example-project"
6362
gtt report --output=xlsx --file=test.xlsx "kriskbx/example-project"
6463
6564
# Test timeframes (adjust the values so it includes/excludes your issues)

documentation.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,11 +267,16 @@ gtt report example-group example-group-2 --type=group
267267
gtt report --output=table
268268
gtt report --output=markdown
269269
gtt report --output=csv
270-
gtt report --output=pdf --file=filename.pdf
271270
gtt report --output=xlsx --file=filename.xlsx
272271
gtt report --output=invoice --file=invoice.md
273272
```
274-
Defaults to `table`. `csv` and `markdown` can be printed to stdout, `pdf` and `xlsx` need the file parameter.
273+
Defaults to `table`. `csv` and `markdown` can be printed to stdout, `xlsx` need the file parameter.
274+
275+
pdf output was dropped. you can use 3rd party tools to convert markdown to pdf, e.g
276+
```shell
277+
showdown makehtml -u UTF8 -i "invoice.md" -o "invoice.html" -c tables
278+
chromium --headless --run-all-compositor-stages-before-draw --print-to-pdf-no-header --disable-gpu --print-to-pdf="invoice.pdf" "invoice.html"
279+
```
275280

276281
#### Invoice Output
277282

0 commit comments

Comments
 (0)