Skip to content

Commit 30228d3

Browse files
committed
Add basic docs.
1 parent 59fcfe7 commit 30228d3

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

docs/Getting Started/Recurring Tasks.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ Use this setting to control where the recurring task is inserted. The default is
5555
> [!released]
5656
> Control of the location (or order) of the new task was introduced in Tasks 3.8.0
5757
58+
### Drop scheduled dates
59+
60+
Use this setting to control whether the scheduled date should be removed from the next occurrence. The scheduled date is only removed the task also has another date.
61+
5862
### Recurring Tasks with Custom Statuses
5963

6064
> [!Warning]

src/Config/SettingsTab.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,11 @@ export class SettingsTab extends PluginSettingTab {
379379
new Setting(containerEl)
380380
.setName(i18n.t('settings.recurringTasks.dropScheduledDate.name'))
381381
.setDesc(
382-
SettingsTab.createFragmentWithHTML(i18n.t('settings.recurringTasks.dropScheduledDate.description')),
382+
SettingsTab.createFragmentWithHTML(
383+
i18n.t('settings.recurringTasks.dropScheduledDate.description') +
384+
'</br>' +
385+
this.seeTheDocumentation('https://publish.obsidian.md/tasks/Getting+Started/Recurring+Tasks'),
386+
),
383387
)
384388
.addToggle((toggle) => {
385389
const { dropScheduledDateOnRecurrence } = getSettings();

0 commit comments

Comments
 (0)