Page 1 of 1

[solved] CSV import note level

Posted: Mon Jul 05, 2021 2:53 am
by alinares
Hi,

I'm trying to import some notes I have as CSV. In the import dialog there I found this checkbox: "Auto-detect note level". How does this autodetection work?

I want to format the CSV in such a way that the autodetection is able to recreate a tree.

Thanks!

Re: CSV import note level

Posted: Mon Jul 05, 2021 9:13 pm
by Petko
It uses the space or tab characters in front of the Title field to recreate the tree. Each space or tab increases the level of the created note.

For example the following text:

Code: Select all

root note
 child note
  child of child note
 child note
will create a tree with single root note, two child notes and one sub-child of the first child.

Re: CSV import note level

Posted: Wed Jul 07, 2021 5:34 am
by alinares
Thanks!