diff --git a/resume_de.qmd b/resume_de.qmd index c702953..c6c848b 100644 --- a/resume_de.qmd +++ b/resume_de.qmd @@ -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) + ) +) ``` diff --git a/resume_en.qmd b/resume_en.qmd index 9893c87..ccabc17 100644 --- a/resume_en.qmd +++ b/resume_en.qmd @@ -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)) +) ```