We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
**ONE 1-2+ Hours Task:** - [ ] <%tp.file.cursor(1)%> <%* if (tp.date.now("ddd") == "Sun") { %> - [ ] Make Weekly Note <%* } %> <%* if (tp.date.now("D") == 1) { %> - [ ] Make Monthly Note <%* } %> <%* if (tp.date.now("M-D") == "1-1") { %> - [ ] Make Yearly Note <%* } %>
Why is the weekly review at the end of the week but for the rest it's at the beginning?
You could also either do this
<%* if (tp.date.now("ddd") == "Mon") { %>
or
<%* if (tp.date.now("D", 1) == 1) { %> - [ ] Make Monthly Note <%* } %> <%* if (tp.date.now("M-D", 1) == "1-1") { %> - [ ] Make Yearly Note <%* } %>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Why is the weekly review at the end of the week but for the rest it's at the beginning?
You could also either do this
or
The text was updated successfully, but these errors were encountered: