Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 86 additions & 0 deletions .github/test/multiple/resume1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"basics": {
"name": "John Doe",
"label": "Engineer",
"picture": "",
"email": "john@doe.com",
"phone": "",
"website": "https://johndoe.com",
"summary": "John Doe is just a nice fella.",
"location": {
"address": "123 Main St",
"postalCode": "12345",
"city": "Anytown",
"countryCode": "US",
"region": "CA"
},
"profiles": [
{
"network": "LinkedIn",
"username": "johndoe",
"url": "https://www.linkedin.com/in/john-doe/"
}
]
},
"work": [
{
"company": "Tech Corp",
"position": "Senior Engineer",
"website": "https://techcorp.com",
"summary": "Led development of key features",
"highlights": ["Increased performance by 50%", "Reduced bug count by 40%"]
}
],
"volunteer": [
{
"organization": "Code for Good",
"position": "Mentor",
"website": "https://codeforgood.org",
"summary": "Mentored junior developers",
"highlights": ["Helped 20+ developers improve their skills"]
}
],
"education": [
{
"institution": "University of Technology",
"area": "Computer Science",
"studyType": "Bachelor",
"gpa": "3.8",
"courses": ["Data Structures", "Algorithms", "Software Engineering"]
}
],
"awards": [
{
"title": "Best Innovation Award",
"awarder": "Tech Industry Association",
"summary": "Awarded for innovative solution in cloud computing"
}
],
"publications": [
{
"name": "Modern Software Architecture",
"publisher": "Tech Publishing House",
"website": "https://techpublishing.com/msa",
"summary": "A comprehensive guide to modern software architecture patterns"
}
],
"skills": [
{
"name": "Programming Languages",
"level": "Advanced",
"keywords": ["TypeScript", "JavaScript", "Python", "Java"]
}
],
"languages": [
{
"language": "English",
"fluency": "Native"
}
],
"interests": [
{
"name": "Technology",
"keywords": ["Software Architecture", "Cloud Computing", "Open Source"]
}
]
}
77 changes: 77 additions & 0 deletions .github/test/multiple/resume2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
---
basics:
name: John Doe
label: Engineer
picture: ''
email: john@doe.com
phone: ''
website: https://johndoe.com
summary: John Doe is just a nice fella.
location:
address: 123 Main St
postalCode: '12345'
city: Anytown
countryCode: US
region: CA
profiles:
- network: LinkedIn
username: johndoe
url: https://www.linkedin.com/in/john-doe/

work:
- company: Tech Corp
position: Senior Engineer
website: https://techcorp.com
summary: Led development of key features
highlights:
- Increased performance by 50%
- Reduced bug count by 40%

volunteer:
- organization: Code for Good
position: Mentor
website: https://codeforgood.org
summary: Mentored junior developers
highlights:
- Helped 20+ developers improve their skills

education:
- institution: University of Technology
area: Computer Science
studyType: Bachelor
gpa: '3.8'
courses:
- Data Structures
- Algorithms
- Software Engineering

awards:
- title: Best Innovation Award
awarder: Tech Industry Association
summary: Awarded for innovative solution in cloud computing

publications:
- name: Modern Software Architecture
publisher: Tech Publishing House
website: https://techpublishing.com/msa
summary: A comprehensive guide to modern software architecture patterns

skills:
- name: Programming Languages
level: Advanced
keywords:
- TypeScript
- JavaScript
- Python
- Java

languages:
- language: English
fluency: Native

interests:
- name: Technology
keywords:
- Software Architecture
- Cloud Computing
- Open Source
774 changes: 774 additions & 0 deletions .github/test/render/json-to-html/resume.html

Large diffs are not rendered by default.

80 changes: 37 additions & 43 deletions .github/test/render/json-to-html/resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,85 +8,79 @@
"website": "https://johndoe.com",
"summary": "John Doe is just a nice fella.",
"location": {
"address": "Your street address or mailing address",
"postalCode": "Your postal code (ZIP in the U.S.)",
"city": "Your city",
"countryCode": "Your country (e.g. USA)",
"region": "Your region (state in the U.S.)"
"address": "123 Main St",
"postalCode": "12345",
"city": "Anytown",
"countryCode": "US",
"region": "CA"
},
"profiles": [
{
"network": "A social media or other profile that you would like to include (e.g. LinkedIn, Twitter)",
"username": "Your username on this network",
"url": "A URL to your user profile page"
"network": "LinkedIn",
"username": "johndoe",
"url": "https://www.linkedin.com/in/john-doe/"
}
]
},
"work": [
{
"company": "Your employer name",
"position": "Your job title",
"website": "The URL for the employer's website",
"summary": "A one-sentence to one-paragraph summary of this employer or position",
"highlights": [
"Bullet-point list items that you would like to include along with (or instead of) a summary paragraph."
]
"company": "Tech Corp",
"position": "Senior Engineer",
"website": "https://techcorp.com",
"summary": "Led development of key features",
"highlights": ["Increased performance by 50%", "Reduced bug count by 40%"]
}
],
"volunteer": [
{
"organization": "Your volunteer organization name",
"position": "Your job title",
"website": "The URL for the employer's website",
"summary": "A one-sentence to one-paragraph summary of this employer or position",
"highlights": [
"Bullet-point list items that you would like to include along with (or instead of) a summary paragraph."
]
"organization": "Code for Good",
"position": "Mentor",
"website": "https://codeforgood.org",
"summary": "Mentored junior developers",
"highlights": ["Helped 20+ developers improve their skills"]
}
],
"education": [
{
"institution": "Your school name",
"area": "Your area of study or degree earned",
"studyType": "",
"gpa": "",
"courses": [""]
"institution": "University of Technology",
"area": "Computer Science",
"studyType": "Bachelor",
"gpa": "3.8",
"courses": ["Data Structures", "Algorithms", "Software Engineering"]
}
],
"awards": [
{
"title": "Your award title",
"awarder": "Your award given by",
"summary": "A one-sentence to one-paragraph overview of this award"
"title": "Best Innovation Award",
"awarder": "Tech Industry Association",
"summary": "Awarded for innovative solution in cloud computing"
}
],
"publications": [
{
"name": "Your publication title",
"publisher": "Publisher name",
"website": "The website URL for this publisher or book",
"summary": "A one-sentence to one-paragraph overview of this publication"
"name": "Modern Software Architecture",
"publisher": "Tech Publishing House",
"website": "https://techpublishing.com/msa",
"summary": "A comprehensive guide to modern software architecture patterns"
}
],
"skills": [
{
"name": "A category of job skills (e.g. 'Programming Languages')",
"level": "",
"keywords": ["Keywords under this category (e.g. 'Java', 'C++', etc)"]
"name": "Programming Languages",
"level": "Advanced",
"keywords": ["TypeScript", "JavaScript", "Python", "Java"]
}
],
"languages": [
{
"language": "Language name",
"fluency": "Your language fluency"
"language": "English",
"fluency": "Native"
}
],
"interests": [
{
"name": "A category of interests (e.g. 'Sports')",
"keywords": [
"Keywords under this category (e.g. 'Cricket', 'Football', 'Golf')"
]
"name": "Technology",
"keywords": ["Software Architecture", "Cloud Computing", "Open Source"]
}
]
}
793 changes: 793 additions & 0 deletions .github/test/render/json-to-pdf/resume.html

Large diffs are not rendered by default.

Loading
Loading