-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Evernote] Links for Evernote notes are not converted #306
Comments
Hello, Would you be able to provide us with an |
In Evernote, each note has a GUID that is used to link to it, so you can rename the title of the note or rename the text in the link at will without breaking the link. As long as the link to the note and the note title are the same, links are converted with Importer without issue. Otherwise, there is no way to figure out the correct links since note GUIDs are not exported to .enex files, and the converted link either points to a wrong note or to a non-existing one. For more details, see [Evernote] Internal Evernote note links are not converted to Obsidian Links A few steps to recreate this issue:
If you renamed the note title, after conversion, you will end up with a file named Unfortunately, I think the only real (and reasonable) solution for this (and other) issues is to use the Evernote API to read all data including the metadata missing in .enex files. evernote-backup is a program that does exactly that. I'm currently writing my own conversion script that reads the data fetched with evernote-backup to circumvent most of the current issues with Obsidian Importer. FWIW, I attached the .enex file here (remove the .TXT extension) -> New title.enex.txt - or just check it below: <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE en-export SYSTEM "http://xml.evernote.com/pub/evernote-export4.dtd">
<en-export export-date="20241009T162617Z" application="Evernote" version="10.107.3">
<note>
<title>New title</title>
<created>20241009T162241Z</created>
<updated>20241009T162607Z</updated>
<note-attributes>
<author>Anonymous</author>
</note-attributes>
<content>
<![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"><en-note><div><a href="evernote:///view/0000000/sss/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy/" rel="noopener noreferrer" rev="en_rl_none">Original title</a></div></en-note> ]]>
</content>
</note>
</en-export> |
After importing my notes from Evernote into Obsidian, links for notes appear as
evernote:///view/[...]
instead of being converted to Obsidian links.In my case, a quick search in Obsidian for "evernote:///view/" showed 1.347 results, so it is not an issue that is simple to solve manually...
Obsidian 1.6.7, Importer 1.6.4, Windows 11.
The text was updated successfully, but these errors were encountered: