Skip to content
New issue

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

Allow nested bullet points #177

Open
amarvin opened this issue Sep 26, 2024 · 2 comments
Open

Allow nested bullet points #177

amarvin opened this issue Sep 26, 2024 · 2 comments
Assignees
Labels
enhancement New feature or request

Comments

@amarvin
Copy link

amarvin commented Sep 26, 2024

Would it be possible to have nested bulleted lists? I often put sub-bullets in my work experience like:

MyJob

MyCompany

  • Project A
    • Deliverable 1
    • Deliverable 2
  • Project B
    • Challenge 1
    • Deliverable 3

I tried to do this with rendercv using:

    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:

image

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.

@amarvin amarvin added the enhancement New feature or request label Sep 26, 2024
@amarvin
Copy link
Author

amarvin commented Sep 26, 2024

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:

image

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).

@sinaatalay
Copy link
Owner

Thank you, that's a good idea. We should implement this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants