Nenhuma descrição

jherve 4eec45540c 0.5.1 1 ano atrás
.vscode 98f6350a37 Ensure code is recompiled on save 2 anos atrás
examples 8c40e32fb7 Switch to a much simpler pipeline with Pug 2 anos atrás
.gitignore 77f5c08538 Make the script installable and accept parameters 2 anos atrás
.prettierrc.json 8c40e32fb7 Switch to a much simpler pipeline with Pug 2 anos atrás
LICENSE 8c40e32fb7 Switch to a much simpler pipeline with Pug 2 anos atrás
README.md fe1d29e1de Add original repository in README 2 anos atrás
package-lock.json 4eec45540c 0.5.1 1 ano atrás
package.json 4eec45540c 0.5.1 1 ano atrás
run.sh 8c40e32fb7 Switch to a much simpler pipeline with Pug 2 anos atrás
to_pdf.js e26e73ff70 [fix] Use replaceAll instead of replace 1 ano atrás

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

This builder is largely inspired by this one : https://github.com/BeyondCodeBootcamp/html-resume

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