diff --git a/src/helpers/parseSubtasksViaIndention.ts b/src/helpers/parseSubtasksViaIndention.ts index 5c9589b782..8a451bdd14 100644 --- a/src/helpers/parseSubtasksViaIndention.ts +++ b/src/helpers/parseSubtasksViaIndention.ts @@ -9,8 +9,10 @@ function cleanupTitle(title: string) { const spaceRegex = /^ */ -// taskTitles should be multiple lines of task tiles with indention to declare their parent/subtask -// relation between each other. +/** + * @param taskTitles should be multiple lines of task tiles with indention to declare their parent/subtask + * relation between each other. + */ export function parseSubtasksViaIndention(taskTitles: string): TaskWithParent[] { const titles = taskTitles.split(/[\r\n]+/)