# yaml-language-server: $schema=https://unpkg.com/engineercv@latest/lib/schema.json

basics:
  name: Jane Smith
  email: jane.smith@example.com
  phone: +1 (555) 123-4567
  url: https://janesmith.dev


output: ../out/{{ source.name }}.pdf

extra:
  - file: ../out/{{ source.name }}.txt
    type: text
    content: |
      Name: {{ basics.name }}
      Email: {{ basics.email }}
      
      Phone: {{ basics.phone }}
      Website: {{ basics.url }}
  - file: ../out/{{ source.name }}-data.json
    type: json
    content:
      name: "{{ basics.name }}"
      email: "{{ basics.email }}"
      phone: "{{ basics.phone }}"
      url: "{{ basics.url }}"
      summary: |
        Full-stack developer with expertise in modern web technologies.
        Passionate about creating user-friendly applications.
  - file: ../out/{{ source.name }}-data.yaml
    type: yaml
    content:
      name: "{{ basics.name }}"
      email: "{{ basics.email }}"
      phone: "{{ basics.phone }}"
      url: "{{ basics.url }}"
      summary: |
        Full-stack developer with expertise in modern web technologies.
        Passionate about creating user-friendly applications.