We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be possible to have nested bulleted lists? I often put sub-bullets in my work experience like:
I tried to do this with rendercv using:
rendercv
experience: - company: MyCompany position: MyJob start_date: 2024-09 highlights: - Project 1 - Deliverable 1 - Deliverable 2 - Project 2 - Challenge 1 - Deliverable 3
but it renders as:
I also tried using markdown:
experience: - company: MyCompany position: MyJob start_date: 2024-09 highlights: - "Project 1 - Deliverable 1 - Deliverable 2" - "Project 2 - Challenge 1 - Deliverable 3"
but got the same render.
The text was updated successfully, but these errors were encountered:
Here's my workaround so far:
experience: - company: MyCompany position: MyJob start_date: 2024-09 highlights: - "Project 1 \\begin{itemize} \\item Deliverable 1 \\item Deliverable 2 \\end{itemize}" - "Project 2 \\begin{itemize} \\item Challenge 1 \\item Deliverable 3 \\end{itemize}"
which renders as:
Note that I needed extra backslashes to escape the backslash LaTeX commands (https://stackoverflow.com/questions/32991517/how-to-escape-colons-and-other-special-characters-in-a-yaml-string).
Sorry, something went wrong.
Thank you, that's a good idea. We should implement this.
sinaatalay
No branches or pull requests
Would it be possible to have nested bulleted lists? I often put sub-bullets in my work experience like:
MyJob
MyCompany
I tried to do this with
rendercv
using:but it renders as:
I also tried using markdown:
but got the same render.
The text was updated successfully, but these errors were encountered: