samba / trombone

Converts Tomboy notes files to an Evernote export archive
8 stars 3 forks source link

This is a quick script to convert notes from Tomboy to Evernote.

This project was dervied from @scribu's work (cited below), but this one makes a best-effort pass to convert Tomboy markup to standard HTML compatible with Evernote's ENML, whereas @scribu's would drop most formatting markup.

Usage

Whereas @scribu's required external dependencies, this one relies on standard Python modules:

This one also requires you to select which Tomboy notes you want to export, and writes them all to standard output.

# Export **all** Tomboy notes in your home directory
find $HOME -type f -name '*.note' -print0 | xargs -0 trombone > EXPORT.enex

Note that on Mac OS X, Tomboy's notes are stored in:

On Linux, it's usually

Limitations

Resources