isaacmast / linkedin-pdf-to-json

JavaScript recursive descent parser Node.js command line tool for storing extracted text from LinkedIn profile PDFs in JSON format.
MIT License
35 stars 23 forks source link

chore: store parsed description text in an array rather than in individual properties #5

Closed isaacmast closed 8 years ago

isaacmast commented 8 years ago

As of now, sections that have description text (e.g. summary, work experience, etc.) have been storing the individually parsed strings into their own object properties, such as text1, text2, etc. Change this so that the text is stored as elements in an array for easier retrieval after parsing has finished.

isaacmast commented 8 years ago

COMPLETED

See the following commits: