Fix missing README and imports
This commit is contained in:
parent
f8ee96970a
commit
b222a3b874
3 changed files with 5 additions and 4 deletions
|
@ -4,7 +4,9 @@ version = "0.1.0"
|
||||||
description = "My personal curriculum vitae"
|
description = "My personal curriculum vitae"
|
||||||
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
|
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
|
||||||
license = "GPLv3"
|
license = "GPLv3"
|
||||||
readme = "README.md"
|
packages = [
|
||||||
|
{ include = "processing"}
|
||||||
|
]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.11"
|
python = "^3.11"
|
||||||
|
|
|
@ -13,8 +13,7 @@ right-column:
|
||||||
---
|
---
|
||||||
|
|
||||||
```{python}
|
```{python}
|
||||||
from IPython.core.display import Markdown
|
from IPython.display import display, Markdown
|
||||||
from IPython.display import display
|
|
||||||
|
|
||||||
from processing import yml
|
from processing import yml
|
||||||
from processing import content
|
from processing import content
|
||||||
|
|
|
@ -21,11 +21,11 @@ from processing import content
|
||||||
data=yml.parse("content.yml")
|
data=yml.parse("content.yml")
|
||||||
lang="en"
|
lang="en"
|
||||||
```
|
```
|
||||||
|
|
||||||
```{python}
|
```{python}
|
||||||
display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang)))
|
display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang)))
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
```{python}
|
```{python}
|
||||||
display(Markdown(
|
display(Markdown(
|
||||||
content.experience_to_md(data, headline="# Professional experience", lang=lang)))
|
content.experience_to_md(data, headline="# Professional experience", lang=lang)))
|
||||||
|
|
Loading…
Reference in a new issue