|
|
пре 1 година | |
|---|---|---|
| .vscode | пре 2 година | |
| examples | пре 2 година | |
| .gitignore | пре 2 година | |
| .prettierrc.json | пре 2 година | |
| LICENSE | пре 2 година | |
| README.md | пре 2 година | |
| package-lock.json | пре 1 година | |
| package.json | пре 1 година | |
| run.sh | пре 2 година | |
| to_pdf.js | пре 1 година |
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.'
}