MCPcopy Create free account
hub / github.com/callumalpass/tasknotes / appendDetails

Method appendDetails

src/utils/TasksPluginParser.ts:459–467  ·  view source on GitHub ↗
(state: ParsingState, value: string)

Source from the content-addressed store, hash-verified

457 }
458
459 private static appendDetails(state: ParsingState, value: string): void {
460 if (!value.trim()) {
461 return;
462 }
463
464 state.parsed.details = state.parsed.details
465 ? `${state.parsed.details}\n\n${value.trim()}`
466 : value.trim();
467 }
468
469 private static normalizeDate(dateString: string | undefined): string | undefined {
470 if (!dateString) {

Callers 1

applyDataviewFieldMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected