how to automatically turn all words in a note into tags

how to automatically turn all words in a note into tags?)

You can do this through regular expressions (regex) on an app like Sublime Text or Atom. Using Sublime for example, you can go to menu Find > Replace, put this regex on the “Find” field (?=\b\w+) and put the hashtag character on the Replace field. Click Replace All. Done!

One little thing, make sure the regex option is activated on the Find modal. It is a dot followed by an asterisk .*

2 Likes

Thank you for your reply!
Since there is a lot of text - it’s worth doing - I’ll try.
It will be nice when obsidian can do this on the fly when writing.

1 Like

magic works!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.