# وارد کردن یادداشت ها

# اورنوت

There is an Evernote import dialog you can reach in the Note / Import menu to import Enex files.

Images, attachments, tags, basic formatting and metadata will be imported as well.

# جاپلین

There is a Joplin import dialog you can reach in the Note / Import menu.

# Google Keep

Download Keep tasks using Google Takeout

Extract archive

Download keep_to_markdown.py to directory next to extracted Keep folder

python keep_to_markdown.py Keep out/

Replace Keep by the folder containing notes in JSON format. The out folder will be created if it doesn't exist.

From https://gitlab.com/-/snippets/2002921

# Tomboy

You can import your Tomboy Notes using a script called Trombone (opens new window).

You might install python2 to make the script work. It will convert your Tomboy notes to an Evernote .enex file, which then you are able to import to QOwnNotes.

For anyone wanting to do this, first make sure you have Python2 installed and you might want to also install python-is-python2 (you can remove that later). This may be easier/safer in a chroot or Docker container, if you have that option (will be documented here later).

 python2 python-is-python2 ،sudo apt را نصب می کند 
1

Download the trombone file from GitHub, extract and jump into that folder:

cd ~/Downloads/trombone-master

sudo make
sudo make install
1
2
3
4

Then cd into the folder where your tomboy notes are:

 cd ~/.local/share/tomboy/
1

Then run this:

find ./ -type f -name '*.note' -print0 | xargs -0 trombone > EXPORT.enex
1

If you get unicode errors about specific notes, just remove each note and run the conversion again until it gives a message saying Saving... . You will have a file called EXPORT.enex which can then be imported into QOwnNotes.

During the import into QOwnNotes you might uncheck all of the attributes to import except maybe the creation/modification date, since Tomboy does not have those features.