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

View file

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