|
|
před 1 rokem | |
|---|---|---|
| .vscode | před 2 roky | |
| examples | před 2 roky | |
| .gitignore | před 2 roky | |
| .prettierrc.json | před 2 roky | |
| LICENSE | před 2 roky | |
| README.md | před 2 roky | |
| package-lock.json | před 1 rokem | |
| package.json | před 1 rokem | |
| run.sh | před 2 roky | |
| to_pdf.js | před 1 rokem |
Run ./run.sh in development mode.
Run ./to_pdf.js in order to export the resume both in .html and .pdf formats
This builder is largely inspired by this one : https://github.com/BeyondCodeBootcamp/html-resume
There are many ways to print a multi-line string in YAML, but this one seems the most natural (beware of trailing spaces, though !) :
summary: >-
The first line
which can
be written on many lines.
The second line which
can also be split.
The last line.
This will be parsed as :
{
summary: 'The first line which can be written on many lines.\n' +
'The second line which can also be split.\n' +
'The last line.'
}