Skip to content

Suggestion: Allow user to specify section to add to in Daily Note #5

@heliostatic

Description

@heliostatic

Currently, tasks are appended to the daily note as #{var:task_tag} [[{var:tasks_file}#^{var:ref}|{var:task.stripnonalphanumeric}]]---

However, it would be nice to add the task to a section, as is done in the Tasks file itself, and would presumably look something like:

find = re.compile(r'^(## ' + re.escape(heading) + r'\n.*?)\n+#', flags = re.MULTILINE|re.DOTALL)
replace = '\\1\n- ' + entry + '\n\n#'

if re.findall(find, original_content) == []:
	new_content = original_content + '## ' + heading + '\n- ' + entry + '\n\n#'
else:
	new_content = re.sub(find, replace, original_content)

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions