This document provides various configuration examples for the Auto Note Mover plugin. You can configure these rules in the plugin settings tab.
Move general notes to a date-based folder, but exclude specific note types (like Daily or Weekly notes) using regex.
- Goal: Move notes to
20_Notes/Year/Monthbased on creation time, but skip Daily Notes (YYYY-MM-DD) and Weekly Notes (YYYY-Www). - Settings:
- Folder:
20_Notes/{{gggg}}/M{{MM}} - Match:
ALL - Conditions:
- Type:
Date- Source:
Metadata->Created time - Note: This sets the destination folder based on the file's creation date.
- Source:
- Type:
Title- Value:
^(?!\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01])$).*$ - Explanation: Negative lookahead to exclude files named like
2024-01-01.
- Value:
- Type:
Title- Value:
^(?!\d{4}-W(0[1-9]|[1-4]\d|5[0-3])$).*$ - Explanation: Negative lookahead to exclude files named like
2024-W01.
- Value:
- Type:
- Folder:
Move notes containing a specific tag to a designated folder.
- Goal: Move all notes with
#booktag toReading Listfolder. - Settings:
- Folder:
Reading List - Match:
ALL - Condition:
- Type:
Tag - Value:
#book
- Type:
- Folder:
Move notes where the filename matches a specific Regular Expression pattern.
- Goal: Move notes starting with "Meeting -" to
Meetingsfolder. - Settings:
- Folder:
Meetings - Match:
ALL - Condition:
- Type:
Title - Value:
^Meeting -
- Type:
- Folder:
Organize notes into date-based folders using the note's creation date or a frontmatter date property.
- Goal: Move notes to
Diary/YYYY/MMbased on their creation time. - Settings:
- Folder:
Diary/{{YYYY}}/{{MM}} - Match:
ALL - Condition:
- Type:
Date - Source:
Metadata->Created time
- Type:
- Folder:
Move notes that have a specific frontmatter property or value.
- Goal: Move notes with
type: referencein frontmatter toReferencesfolder. - Settings:
- Folder:
References - Match:
ALL - Condition:
- Type:
Property - Value:
type=reference
- Type:
- Folder:
Move notes if any of the conditions are met.
- Goal: Move note to
Inboxif it has#inboxtag ORstatus: newproperty. - Settings:
- Folder:
Inbox - Match:
ANY - Conditions:
- Type:
Tag, Value:#inbox - Type:
Property, Value:status=new
- Type:
- Folder: