Skip to content

Problem pulling tasks with natural dates #139

@hoanglongnasha

Description

@hoanglongnasha

The problem occurs in pages that contain both tasks and natural language dates in the form of [[{DATE}]]. Simple code used to pull tasks from other pages from a certain path to present in an aggregator page.

return function View() {  
// Start by fetching your data via a query.  
const data = dc.useQuery(`@task and path("some_path")`);  
  
// Simple list
return <dc.List rows={data}/>;  
}

An example of a page containing both tasks and natural language dates
------------- Test_page.md ------------

  • test task

[[2025-09-18]]

  • test task 1
  • test task 2

-----------end_Test_page.md----------

First attempt at trying to pull tasks from the above page only pull the first task (test task) but not the other 2, i.e., test task 1 and test task 2. It appears that any task positioned below [[{DATE}]] cannot be recognised. This was not an issue in the latest previous version before the plugin went live.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions