- Replace
photo.jpgwith your photo. - Update
cv_en_john_doe.md. - Run
make_cv.ps1to generatecv_en_john_doe.docx,cv_en_john_doe.tex,cv_en_john_doe.pdf.
Add optional argument for LaTeX's gemoetry options to md_to_tex.py.
python md_to_tex.py cv_en_john_doe.md english "scale=0.85"
The variable new_page_sections defines the name of sections which get a \newpage in the LaTeX.
Leave the variable emty to not add any \newpage.
new_page_sections = [
"Project Experience",
"Keywords",
"Projekterfahrung",
"Stichworte",
]
Add support for markdown links.
*Jun 2022* [Certified Scrum Storyteller -- Flaccid Scrum School](https://example.com)
Properly convert markdown lists to itemize environments in LaTeX.
- consectetur adipiscing elit
- sed do eiusmod tempor incididunt
- ut labore et dolore magna aliqua
\cvitem{}{\begin{itemize}
\item consectetur adipiscing elit
\item sed do eiusmod tempor incididunt
\item ut labore et dolore magna aliqua
\end{itemize}}
Add support for html comments.
<!-- This comment will not be included in your CV -->
Minor fixes and adjustments.