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

Add multi-line job description #305

Open
smoqadam opened this issue Sep 10, 2018 · 2 comments
Open

Add multi-line job description #305

smoqadam opened this issue Sep 10, 2018 · 2 comments

Comments

@smoqadam
Copy link

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 smoqadam changed the title Add milti-line job description Add multi-line job description Sep 12, 2018
@piotrgredowski
Copy link

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

@Riezebos
Copy link

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

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

No branches or pull requests

3 participants