maugenst / tabletojson

An npm module for node.js to convert HTML tables to JSON objects
https://www.npmjs.com/package/tabletojson
MIT License
138 stars 38 forks source link

Handle duplicate column headers #12

Closed maxthyen closed 7 years ago

maxthyen commented 7 years ago

This PR adds a "_" suffix to each duplicate column header. If there are three columns named "place" for example, the resulting keys would be 'place', 'place_2', 'place_3'

iaincollins commented 7 years ago

Great idea, thanks!