Adjust rendered output of dataview.taskList

I’m trying to render a taskList with tasks from a file based task system. So every task has it’s own file. That works fairly well, as expected.

let now = new Date('2021-10-01'),
	timestamp = new Date(now.getFullYear(), now.getMonth(), now.getDate()) / 1000 * 1000;

let tasks = dv.pages('"☑️ Tasks"')
		.where(p =>
			(p.due && (p.due.ts == timestamp))
		).file.tasks

dv.taskList(tasks) 

This block gives me all the task-files for a given date.

I would love to adjust the rendered list and show it without the file title. I like how the tq plugin renders the link to the file behind the task.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.