We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b56a68 commit fd8fc06Copy full SHA for fd8fc06
docs/Advanced/Tasks Api.md
@@ -96,6 +96,8 @@ const taskLine = '- [ ] This is a task 📅 2024-04-24';
96
97
const result = tasksApi.executeToggleTaskDoneCommand(taskLine, sourceFile.path);
98
99
+// Do whatever you want with the returned value.
100
+// It's just a string containing the Markdown for the toggled task.
101
console.log(result); // "- [x] This is a task 📅 2024-04-24 ✅ 2024-04-23"
102
```
103
0 commit comments