bahamas10/node-netscape-bookmarks

Can not export "duplicate" titles

Opened this issue · 0 comments

Cannot use duplicate title strings, like:

{
  "Best url": "http://example1.com",
  "Best url": "http://example2.com"
}

Possible solution:

[
  {
    "title": "Best url",
    "url": "http://example1.com"
  },
  {
    "title": "Best url",
    "url": "http://example2.com"
  }
]