Turn into quarto project
This commit is contained in:
parent
1fbc99f652
commit
696755caf0
5 changed files with 1714 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
||||||
out/
|
out/
|
||||||
|
|
||||||
|
/.quarto/
|
||||||
|
|
5
_quarto.yml
Normal file
5
_quarto.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
project:
|
||||||
|
title: "resume"
|
||||||
|
|
||||||
|
|
||||||
|
|
1695
poetry.lock
generated
1695
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -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
12
resume.qmd
Normal 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
|
||||||
|
```
|
Loading…
Reference in a new issue