rxresume converter: split work summary to highlights

This commit is contained in:
Reorx 2023-02-04 21:21:09 +08:00
parent 9ee72220d1
commit c2607aca94
1 changed files with 3 additions and 0 deletions

View File

@ -147,6 +147,9 @@ function convert(source) {
// work // work
sectionToResult('work', (item, result) => { sectionToResult('work', (item, result) => {
if (item.summary) {
result.highlights = item.summary.split('\n')
}
formatDatesInResult(result) formatDatesInResult(result)
}) })