You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OwnNote is supposed to import notes exported as HTML from Evernote.
If all files and folders are under the /Notes folder with an HTML extension, they get automaticlaly converted to HTM upon conversion. Images are supposed to be converted to Base64 and embedded in the HTM file.
However, this conversion is not performed properly. Upon importation, images and sound files are still linked from the HTML file by their relative path, and don't display at all.
README is also unclear: the /Notes folder isn't automatically created, nor used with default configuration.
Default settings calls for database-storage only, while README refers to database + folder, which must be done by an administrator.
What is the solution for effective and automatic conversion to Base64?
The text was updated successfully, but these errors were encountered:
I didn't think mine was working either, but I found one html/resource pair which did work: ZPAQ.html and ZPAQ.resources. I think if the stem names are simple (don't require URL encoding) then it works fine. The problem seems to be not doing URL decoding before trying to find the resource files in the filesystem.
storing images in base64 is problematic. I started loosing notes after inserting images. This was caused by hitting SQL limits for entry size. If your image happens to be large, or there are several of those, ownNote silently fails to store them. So I'd propose to have the images stored only in the file storage, not in the SQL at all.
OwnNote is supposed to import notes exported as HTML from Evernote.
If all files and folders are under the /Notes folder with an HTML extension, they get automaticlaly converted to HTM upon conversion. Images are supposed to be converted to Base64 and embedded in the HTM file.
However, this conversion is not performed properly. Upon importation, images and sound files are still linked from the HTML file by their relative path, and don't display at all.
README is also unclear: the /Notes folder isn't automatically created, nor used with default configuration.
Default settings calls for database-storage only, while README refers to database + folder, which must be done by an administrator.
What is the solution for effective and automatic conversion to Base64?
The text was updated successfully, but these errors were encountered: