You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Config/SettingsTab.ts
+27-8Lines changed: 27 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,10 @@ export class SettingsTab extends PluginSettingTab {
166
166
newSetting(containerEl)
167
167
.setName('Set created date on every added task')
168
168
.setDesc(
169
-
"Enabling this will add a timestamp ➕ YYYY-MM-DD before other date values, when a task is created with 'Create or edit task', or by completing a recurring task.",
169
+
SettingsTab.createFragmentWithHTML(
170
+
"Enabling this will add a timestamp ➕ YYYY-MM-DD before other date values, when a task is created with 'Create or edit task', or by completing a recurring task.</br>"+
171
+
'<p>See the <a href="https://publish.obsidian.md/tasks/Getting+Started/Dates#Created+date">documentation</a>.</p>',
172
+
),
170
173
)
171
174
.addToggle((toggle)=>{
172
175
constsettings=getSettings();
@@ -178,7 +181,12 @@ export class SettingsTab extends PluginSettingTab {
178
181
179
182
newSetting(containerEl)
180
183
.setName('Set done date on every completed task')
181
-
.setDesc('Enabling this will add a timestamp ✅ YYYY-MM-DD at the end when a task is toggled to done.')
184
+
.setDesc(
185
+
SettingsTab.createFragmentWithHTML(
186
+
'Enabling this will add a timestamp ✅ YYYY-MM-DD at the end when a task is toggled to done.</br>'+
187
+
'<p>See the <a href="https://publish.obsidian.md/tasks/Getting+Started/Dates#Done+date">documentation</a>.</p>',
@@ -230,7 +238,10 @@ export class SettingsTab extends PluginSettingTab {
230
238
newSetting(containerEl)
231
239
.setName('Next recurrence appears on the line below')
232
240
.setDesc(
233
-
'Enabling this will make the next recurrence of a task appear on the line below the completed task. Otherwise the next recurrence will appear before the completed one.',
241
+
SettingsTab.createFragmentWithHTML(
242
+
'Enabling this will make the next recurrence of a task appear on the line below the completed task. Otherwise the next recurrence will appear before the completed one.</br>'+
243
+
'<p>See the <a href="https://publish.obsidian.md/tasks/Getting+Started/Recurring+Tasks">documentation</a>.</p>',
0 commit comments