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.
Convert title to tag
-
- Posts: 3
- Joined: Fri Jun 21, 2019 3:59 pm
- Contact:
- CintaNotes Developer
- Site Admin
- Posts: 4989
- Joined: Fri Dec 12, 2008 4:45 pm
- Contact:
Re: Convert title to tag
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 with empty string (this will remove all tags!)
2) replace with
Haven't tried it, but something like this might work.
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 = ""
2) replace
Code: Select all
title = "
Code: Select all
title = "" tags = "
Haven't tried it, but something like this might work.
Alex
-
- Posts: 3
- Joined: Fri Jun 21, 2019 3:59 pm
- Contact:
Re: Convert title to tag
Ah, thank you for that workround. It makes sense.
- CintaNotes Developer
- Site Admin
- Posts: 4989
- Joined: Fri Dec 12, 2008 4:45 pm
- Contact:
Re: Convert title to tag
No problem, please let me know if the workaround got the job done for you!
Alex
Return to “CintaNotes Personal Notes Manager”