UNPKG

@notes-sync/service

Version:

Background service for AI-powered note synchronization

36 lines (22 loc) 718 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DAILY_TEMPLATE = void 0; exports.getDailyTemplate = getDailyTemplate; const TODO_SECTION = `**Today's Focus**`; const NOTE_SECTION = `**Notes**`; const DONE_SECTION = `**Done**`; const TOMORROW_SECTION = `**Tomorrow**`; exports.DAILY_TEMPLATE = `# {date} _{quote} - {name}_ ${TODO_SECTION} - [ ] Task 1 ${NOTE_SECTION} ${DONE_SECTION} ${TOMORROW_SECTION} `; function getDailyTemplate(todayDate, quote, quoteAuthor = 'Unknown') { return exports.DAILY_TEMPLATE.replace('{date}', todayDate) .replace('{quote}', quote) .replace('{name}', quoteAuthor); } //# sourceMappingURL=daily-template.config.js.map