Open timothyjlaurent opened 2 years ago
IT would be great if we could use regular expressions to define capture groups in the tags and then move to those places automatically.
For example, you could have a rule that detects:
^#resource/(.*) and then define the output path as
^#resource/(.*)
resources/$1
then the plugin would move a note with #resource/person tag to ./resources/person creating the directory if it doesn't exist.
./resources/person
This would be super useful to me too!
@evanhammer, @timothyjlaurent not sure if this plugin is actively maintained but I've added this feature in my PR #42
IT would be great if we could use regular expressions to define capture groups in the tags and then move to those places automatically.
For example, you could have a rule that detects:
^#resource/(.*)
and then define the output path asresources/$1
then the plugin would move a note with #resource/person tag to
./resources/person
creating the directory if it doesn't exist.