best-resume-ever icon indicating copy to clipboard operation
best-resume-ever copied to clipboard

Add multi-line job description

Open smoqadam opened this issue 6 years ago • 2 comments

Hi, Thanks for this awesome project.

When I add multi line job description, it's shown like this:

screenshot_2018-09-10 best-resume-ever 1

my yaml file is like this:

 - company: MyCompany
   position: Senior PHP Developer
   timeperiod: Oct 2017 - August 2018
   description:
         - • Debug and Refactor legacy code base
         - • Collaborate with android development team to create new features

what should I do if want to add multi line job description?

smoqadam avatar Sep 10 '18 05:09 smoqadam

src/resumes/purple.vue template has following section:

<ul v-if="experience.list" >
    <li v-for="(item, index) in experience.list" :key="index">
      <span class="list-item-black">
        {{item}}
      </span>
    </li>
</ul>

and as I checked - you can use it in data.yml with list property like this:

experience:
- company: A
  position: Software Engineer
  timeperiod: since 2018
  description: Programming and watching cute cat videos.
  list:
    - First
    - Second
  website: https://example.com

piotrgredowski avatar Oct 03 '18 17:10 piotrgredowski

This also works great for the material-dark theme if you add the snippet to material-dark.vue below experience.description!

Riezebos avatar Oct 19 '18 12:10 Riezebos