![[Nothing Documentation#Repeat]]
## Example rules
All of the following can be preceded by a `@` to make them strict.
### Every day, week, month, or year
```
1d
1w
1m
1y
```
### Every week on Tuesday and Friday
```
1w-tu-fr
```
### Every month on the 18th
```
1m-18
```
### Every month on the second Monday
```
1m-2mo
```
### Every month on the first Monday
```
1mo-1mo
1mo-mo
```
### Every Tuesday
```
tuesday
1w-tu
```
# Checklists
Files with a `.md` extension and a name that starts with `=` will have their checkboxes unchecked when creating the next instance.
## Example
If you have a file named:
```
2024-03-20.=Daily Routine.1d.md
```
With contents:
```
- [x] Make bed
- [ ] Exercise
- [x] Read book
```
The next instance will be created as:
```
2024-03-21.=Daily Routine.1d.md
```
With contents:
```
- [ ] Make bed
- [ ] Exercise
- [ ] Read book
```
This works with both default and strict repeating tasks.
![[Partials#^eaec46]]