From 5bf8c938142dbd32f0cadc484dffdbf0368f95d1 Mon Sep 17 00:00:00 2001 From: Reorx Date: Sat, 11 Feb 2023 15:56:41 +0800 Subject: [PATCH] rxresume converter: remove work.summary split to highlights since summary now supports Markdown, there's no need to use highlights for list items --- converters/rxresume-to-jsonresume.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/converters/rxresume-to-jsonresume.js b/converters/rxresume-to-jsonresume.js index a91f44e..8cb59ef 100644 --- a/converters/rxresume-to-jsonresume.js +++ b/converters/rxresume-to-jsonresume.js @@ -157,9 +157,6 @@ function convert(source) { // work sectionToResult('work', (item, result) => { - if (item.summary) { - result.highlights = item.summary.split('\n') - } formatDatesInResult(result) })