Нема описа

theenglishway (time) f925e2fede Fix package for publication пре 2 година
.vscode 98f6350a37 Ensure code is recompiled on save пре 2 година
examples 8c40e32fb7 Switch to a much simpler pipeline with Pug пре 2 година
.gitignore 77f5c08538 Make the script installable and accept parameters пре 2 година
.prettierrc.json 8c40e32fb7 Switch to a much simpler pipeline with Pug пре 2 година
LICENSE 8c40e32fb7 Switch to a much simpler pipeline with Pug пре 2 година
README.md e69f674264 Change CV format to YAML instead of JSON пре 2 година
package-lock.json f925e2fede Fix package for publication пре 2 година
package.json f925e2fede Fix package for publication пре 2 година
run.sh 8c40e32fb7 Switch to a much simpler pipeline with Pug пре 2 година
to_pdf.js 77f5c08538 Make the script installable and accept parameters пре 2 година

README.md

My Resume

Run ./run.sh in development mode.

Run ./to_pdf.js in order to export the resume both in .html and .pdf formats

YAML syntax

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.'
    }