Jump to content

thatdingo

Level 1
  • Posts

    4
  • Joined

  • Last visited

Everything posted by thatdingo

  1. I was able to do this using XML to create an "export" file of my list. You will need a text editor. Create a file and paste this into it: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE en-export SYSTEM "http://xml.evernote.com/pub/evernote-export3.dtd"> <en-export> <note><title>Item 1</title></note> <note><title>Item 2</title></note> <note><title>Item 3</title></note> </en-export> Place your items between the title tags. I had a long list, so I used some of the text processing features of my text editor program (Textwrangler, on a Mac) to insert the tags before and after each item. You could also use Word or concatenate cells in Excel to create the same thing. But the final file must be text only. Once you have your list formatted, save the file with the extension .enex Open Evernote and under the File menu select Import Notes. Find your file and select it. It will import it into a new folder called Import Items, creating a separate note for each item. If you want to add content to the notes at the same time, add a content tag to each note item: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE en-export SYSTEM "http://xml.evernote.com/pub/evernote-export3.dtd"> <en-export> <note><title>Item 1</title><content>Content for Item 1</content></note> <note><title>Item 2</title><content>Content for Item 2</content></note> <note><title>Item 3</title><content>Content for Item 3</content></note> </en-export>
×
×
  • Create New...