best-resume-ever
best-resume-ever copied to clipboard
Add multi-line job description
Hi, Thanks for this awesome project.
When I add multi line job description, it's shown like this:
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?
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
This also works great for the material-dark theme if you add the snippet to material-dark.vue below experience.description!