I want to go to Joplin. I currently use clipto for notes and ticktick for tasks. Clipto exports notes to a json file, ticktick to a CSV file. How do I import these files into Joplin? I tried many online services and python scripts to convert json files to markdown, but couldn't do anything. I haven't started converting CSV yet. How to do it right?
For those file types, use an external file format conversion program like pandoc to convert those files into Markdown. Then, in Joplin, try File > Import > MD - Markdown File for each file.
I think in general, the markdown conversion and import is the easiest way to import notes, as @muzak said. But I doubt that it can be done in this case, since the note content is somewhere nested in the CSV/JSON file.
You will probably have to write your own importer. I couldn't find much information about the file formats. If you are aware of some documentation or can post the exported files here, maybe someone can help.
I'm probably doing something wrong, but I can't convert json to md. Could you please suggest the correct command for conversion?
kot@192:~/bin/tmp/gjc$ pandoc -o clipto_backup_240326_082618.json clipto_backup_240326_082618.md
pandoc: clipto_backup_240326_082618.md: openBinaryFile: does not exist (No such file or directory)
The output file should be directly after the output option (Pandoc - Pandoc User’s Guide). In your case: pandoc -o clipto_backup_240326_082618.md clipto_backup_240326_082618.json
After reading the pandoc website, I think it supports only the specific CSL JSON format. Your note has most likely another format. So I guess we are at this point again: