Skip to content

Commit

Permalink
Made the skills section bold
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitR1999 committed Jun 1, 2024
1 parent dc19d64 commit ff17b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def generate_resume(file_path, json_file_path, author, email, address, phone, de
# Append skills
for skill in data['skills']:
table_data.append([
Paragraph(skill, bulletText='•', style=JOB_DETAILS_PARAGRAPH_STYLE)
Paragraph(f"<font face='Garamond_Semibold'>{skill}</font>", bulletText='•', style=JOB_DETAILS_PARAGRAPH_STYLE)
])
table_styles.append(('TOPPADDING', (0, running_row_index), (1, running_row_index), 1))
table_styles.append(('BOTTOMPADDING', (0, running_row_index), (1, running_row_index), 0))
Expand Down

0 comments on commit ff17b10

Please sign in to comment.