├── .github ├── DISCUSSION_TEMPLATE │ ├── ideas.yml │ └── q-a.yml ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── _extensions └── invoice │ ├── LICENSE │ ├── _extension.yml │ ├── template.typ │ ├── typst-show.typ │ └── typst-template.typ └── template.qmd /.github/DISCUSSION_TEMPLATE/ideas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/.github/DISCUSSION_TEMPLATE/ideas.yml -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/q-a.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/.github/DISCUSSION_TEMPLATE/q-a.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store 2 | template.pdf 3 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/invoice/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/_extensions/invoice/LICENSE -------------------------------------------------------------------------------- /_extensions/invoice/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/_extensions/invoice/_extension.yml -------------------------------------------------------------------------------- /_extensions/invoice/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/_extensions/invoice/template.typ -------------------------------------------------------------------------------- /_extensions/invoice/typst-show.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/_extensions/invoice/typst-show.typ -------------------------------------------------------------------------------- /_extensions/invoice/typst-template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/_extensions/invoice/typst-template.typ -------------------------------------------------------------------------------- /template.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcanouil/quarto-invoice/HEAD/template.qmd --------------------------------------------------------------------------------