This extension adds a simple deadline functionality to markdown lists. Simply add a date in the format dd/mm/yyyy before any markdown list to see the days remaining until that date (also warn when the deadline approaches).
If the deadline is approaching, you get a squiggly line under the date. The remaining days are always appended to the end of the dates' line.
You can also add times above any group of lists for more granular control. Each timed sections are evaluated separately.
<!-- "Today" is 02/09/2024 20:00 PM -->
# 02/09/2024 (today)
## 19h:60m
- [ ] Turn in math homework
## 22h:60m
- [ ] Learn German
# 03/09/2024 (tomorrow)
_No time, this defaults to 23:59_
- [ ] Turn in English homework
- [ ] Learn French
Everything under a deadline is grouped as one. To begin a new deadline, simply add another date before the next list.
<!-- "Today" is 02/09/2024 21:00 -->
## 20/08/2024
This extension non-invasively extends markdown syntax, so you can add whatever you want **anywhere you want**. For example, this paragraph could have been an explanation of the two todo lists below.
- [ ] Study for math test
- [x] ~~_Study for French test_~~
- [x] ~~_Practice violin_~~
## 02/09/2024
### 22h:00m
- [ ] [Watch this video](https://example.com)
## 27/09/2024
- [x] Something
The diagnostics was made to work in vscode. It just parses the markdown file and gives you diagnostics using vscode's LSP API. If you preview it (as seen on the right), you won't see all the deadline diagnostics and reports. But because the dates syntax are basically just markdown, if you render it you'll still see the dates, just not the reported diagnostics.
Due to the nature of the syntax, once you add a date, the parser will try to match any lists below it as a part of the deadline. Doesn't matter if it's already a new topic and you're writing about something else 300+ lines below the date.
To explicitly end a date section, you can add <!-- end section -->
comment anywhere below the last list in the section to end it.
<!-- "Today" is 23/07/2023 -->
# **Math Stuff**
## 31/12/2023
- [x] Task1
- [x] Task2
## 01/07/2023
- [ ] Task3
<!-- end section -->
# English Stuff_
- [ ] Task1
- [ ] Task2
If you a date is found to be inside a codeblock, it is ignored.
```
23/07/2023 <-- Won't be parsed for diagnostics
- Task1
- Task2
```
If you want to skip a section for whatever reasons -- maybe you got lazy and wanted to just not do the thing, but want don't want to delete the list -- you can add a <!-- skip -->
comment anywhere before a section to opt it out of the deadline diagnostics.
<!-- today is 02/09/2024 21:50 -->
30/08/2024
- [ ] Learn Klingon
<!-- skip -->
01/09/2024 (this date section, including any time sections within is skipped)
- [ ] Prep task
05h:00m
- [ ] Prep task
02/09/2024
<!-- skip -->
02h:00m (only this time section is skipped)
- [ ] Prep task
09h:00m
- [ ] Prep task
22h:00m
- [ ] Something else