Aucune description

theenglishway (time) c73a38140b Reformat using prettier il y a 2 ans
.vscode 98f6350a37 Ensure code is recompiled on save il y a 2 ans
examples 8c40e32fb7 Switch to a much simpler pipeline with Pug il y a 2 ans
.gitignore 3e70f28ed7 Use Puppeteer to generate the PDF file il y a 2 ans
.prettierrc.json 8c40e32fb7 Switch to a much simpler pipeline with Pug il y a 2 ans
LICENSE 8c40e32fb7 Switch to a much simpler pipeline with Pug il y a 2 ans
README.md e69f674264 Change CV format to YAML instead of JSON il y a 2 ans
package-lock.json e69f674264 Change CV format to YAML instead of JSON il y a 2 ans
package.json e69f674264 Change CV format to YAML instead of JSON il y a 2 ans
run.sh 8c40e32fb7 Switch to a much simpler pipeline with Pug il y a 2 ans
to_pdf.js c73a38140b Reformat using prettier il y a 2 ans

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