Turn into quarto project

This commit is contained in:
Marty Oehme 2023-06-22 13:45:15 +02:00
parent 1fbc99f652
commit 696755caf0
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
5 changed files with 1714 additions and 1 deletions

2
.gitignore vendored
View file

@ -1 +1,3 @@
out/ out/
/.quarto/

5
_quarto.yml Normal file
View file

@ -0,0 +1,5 @@
project:
title: "resume"

1695
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -9,6 +9,7 @@ readme = "README.md"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.11" python = "^3.11"
PyYAML = "^6.0" PyYAML = "^6.0"
jupyter = "^1.0.0"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
pynvim = "^0.4.3" pynvim = "^0.4.3"

12
resume.qmd Normal file
View file

@ -0,0 +1,12 @@
---
title: "resume"
jupyter: python3
---
## Quarto
Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.
```{python}
1 + 1
```