Page 1 of 1

Convert title to tag

Posted: Fri Jun 21, 2019 4:02 pm
by jimd
Hi
I'm a new user.
I have a list of notes.
Each note has a title but no tag.
I want to convert the title to a tag for each note.
Is this possible to do automatically?
Thank you.

Re: Convert title to tag

Posted: Mon Jun 24, 2019 4:24 pm
by CintaNotes Developer
Hello,

I'm afraid there's no automatic way to do this.
But when you export your notebook to XML, you can see that the structure of the XML is pretty straightforward.
I'm sure you can come up with some search-and-replace scheme there to get what you want, e.g.
1) replace all

Code: Select all

tags = ""
with empty string (this will remove all tags!)
2) replace

Code: Select all

title = "
with

Code: Select all

title = "" tags = "


Haven't tried it, but something like this might work.

Re: Convert title to tag

Posted: Wed Jun 26, 2019 5:41 pm
by jimd
Ah, thank you for that workround. It makes sense.

Re: Convert title to tag

Posted: Thu Jun 27, 2019 3:02 am
by CintaNotes Developer
No problem, please let me know if the workaround got the job done for you!