|
|
hai 1 ano | |
|---|---|---|
| .vscode | %!s(int64=2) %!d(string=hai) anos | |
| examples | %!s(int64=2) %!d(string=hai) anos | |
| .gitignore | %!s(int64=2) %!d(string=hai) anos | |
| .prettierrc.json | %!s(int64=2) %!d(string=hai) anos | |
| LICENSE | %!s(int64=2) %!d(string=hai) anos | |
| README.md | %!s(int64=2) %!d(string=hai) anos | |
| package-lock.json | hai 1 ano | |
| package.json | hai 1 ano | |
| run.sh | %!s(int64=2) %!d(string=hai) anos | |
| to_pdf.js | hai 1 ano |
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.'
}