Dataview

What is this?

This is an example on how to create a dynamic taskList with the current date tasks.

dv.taskList( 
	dv.pages().file.tasks
	 .where(t=>!t.completed)
	 .where(t=>t.text.includes(moment().format( "YYYY-MM-DD" ) ) )
 );