rendercv icon indicating copy to clipboard operation
rendercv copied to clipboard

Allow nested bullet points

Open amarvin opened this issue 4 months ago • 2 comments

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 avatar Sep 26 '24 15:09 amarvin