ppresume / community

Discussions, feedbacks, roadmaps, community.
59 stars 3 forks source link

feat: support customized sections #12

Open xiaohanyu opened 11 months ago

xiaohanyu commented 11 months ago

Description

Right now we support 14 sections ('work', 'education', 'awards'), which should be able to cover 90% cases for resume composition:

export type SectionID =
  | 'basics'
  | 'location'
  | 'profiles'
  | 'work'
  | 'education'
  | 'volunteer'
  | 'awards'
  | 'certificates'
  | 'publications'
  | 'skills'
  | 'languages'
  | 'interests'
  | 'references'
  | 'projects'

However, in some rare cases, these pre-defined sections may not enough, in these cases people may need 100% customized sections.

[Optional] Possible Solutions

Supporting 100% customized sections is pretty complicated task, it is in essence a new no-code product to build some PDF. We need to think it carefully.

Acceptance Criteria

TBD

Todo list

TBD

jiengup commented 4 months ago

And it will be nice if support sections with other language like ‘工作经历' as 'work' and '竞赛奖项' as award'.

xiaohanyu commented 4 months ago

And it will be nice if support sections with other language like ‘工作经历' as 'work' and '竞赛奖项' as award'.

I am going to support CJK resumes in the near future, whether the section titles will be localized according to the main language of the resume: https://github.com/ppresume/community/issues/4

On the other hand, if you want more customizable, I am planning to get a feature for section alias, where you can rename the section titles to anything you like: https://github.com/ppresume/community/issues/11

jiengup commented 4 months ago

And it will be nice if support sections with other language like ‘工作经历' as 'work' and '竞赛奖项' as award'.

I am going to support CJK resumes in the near future, whether the section titles will be localized according to the main language of the resume: #4

On the other hand, if you want more customizable, I am planning to get a feature for section alias, where you can rename the section titles to anything you like: #11

Glad to hear this, looking forward to these new features.