Format resume quarto source files

This commit is contained in:
Marty Oehme 2024-09-12 17:41:57 +02:00
parent d572a63107
commit 6cd12c3b8b
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
2 changed files with 44 additions and 28 deletions

View file

@ -4,38 +4,44 @@ subtitle: Marty Oehme
name: Marty Oehme
lang: de
left-column:
- 'Email: [marty.oehme@gmail.com](mailto:marty.oehme@gmail.com)'
- 'Telefon: +49 177 377 4949'
- "Email: [marty.oehme@gmail.com](mailto:marty.oehme@gmail.com)"
- "Telefon: +49 177 377 4949"
right-column:
- 'Homepage: [http://martyoeh.me/](http://martyoeh.me/)'
- 'GitHub: [https://github.com/marty-oehme/](https://github.com/marty-oehme/)'
- "Homepage: [http://martyoeh.me/](http://martyoeh.me/)"
- "GitHub: [https://github.com/marty-oehme/](https://github.com/marty-oehme/)"
- 'Stand: \today'
---
```{python}
from IPython.display import display, Markdown
from processing import yml, content
from IPython.display import Markdown
from processing import yml
from processing import content
data=yml.parse("content.yml")
lang="de"
data = yml.parse("content.yml")
lang = "de"
```
```{python}
#| label: summary
display(Markdown(content.summary_to_md(data, headline="# Zusammenfassung", lang=lang)))
```
```{python}
display(Markdown(
content.experience_to_md(data, headline="# Berufserfahrung", lang=lang)))
#| label: prof experience
display(
Markdown(content.experience_to_md(data, headline="# Berufserfahrung", lang=lang))
)
```
```{python}
#| label: education
display(Markdown(content.education_to_md(data, headline="# Ausbildung", lang=lang)))
```
```{python}
display(Markdown(
content.qualifications_to_md(data, headline="# Qualifikationen", lang=lang)))
#| label: qualifications
display(
Markdown(
content.qualifications_to_md(data, headline="# Qualifikationen", lang=lang)
)
)
```

View file

@ -4,38 +4,48 @@ subtitle: Marty Oehme
name: Marty Oehme
lang: en
left-column:
- 'Email: [marty.oehme@gmail.com](mailto:marty.oehme@gmail.com)'
- 'Mobile: +49 177 377 4949'
- "Email: [marty.oehme@gmail.com](mailto:marty.oehme@gmail.com)"
- "Mobile: +49 177 377 4949"
right-column:
- 'Homepage: [http://martyoeh.me/](http://martyoeh.me/)'
- 'GitHub: [https://github.com/marty-oehme/](https://github.com/marty-oehme/)'
- "Homepage: [http://martyoeh.me/](http://martyoeh.me/)"
- "GitHub: [https://github.com/marty-oehme/](https://github.com/marty-oehme/)"
- 'Last Updated: \today'
---
```{python}
from IPython.display import display, Markdown
from processing import yml, content
from IPython.display import Markdown
from processing import yml
from processing import content
data=yml.parse("content.yml")
lang="en"
data = yml.parse("content.yml")
lang = "en"
```
```{python}
#| label: summary
display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang)))
```
```{python}
display(Markdown(
content.experience_to_md(data, headline="# Professional experience", lang=lang)))
#| label: prof experience
display(
Markdown(
content.experience_to_md(
data,
headline="# Professional experience",
lang=lang,
)
)
)
```
```{python}
#| label: education
display(Markdown(content.education_to_md(data, headline="# Education", lang=lang)))
```
```{python}
display(Markdown(
content.qualifications_to_md(data, headline="# Qualifications", lang=lang)))
#| label: qualifications
display(
Markdown(content.qualifications_to_md(data, headline="# Qualifications", lang=lang))
)
```