Skip to content

Latest commit

 

History

History
73 lines (54 loc) · 1.3 KB

meeting-notes-editor.md

File metadata and controls

73 lines (54 loc) · 1.3 KB
aliases tags created modified
uncategorized
2024-02-14
2024-02-29

Meeting-notes

INPUT[listSuggester(optionQuery(#person), useLinks(false)):attendees]

{attendees} as attendees

---

const attendeesStr = context.bound.attendees.map(x => `option(${x})`).join(", ");

const mightNeed = context.bound.attendees.filter( a => !app.metadataCache.getFirstLinkpathDest(a, "/people"))

const str = `\`INPUT[inlineSelect(${attendeesStr}):memory^selected]\`\n\n${mightNeed}`;

return engine.markdown.create(str);

BUTTON[add-todo, create-person-entry]

style: primary
hidden: true
id: create-person-entry
label: Create Person Entry
actions:
  - type: templaterCreateNote
    templateFile: "templates/person-entry.md"
    folderPath: people
    fileName: "temp-entry"
    openNote: false
label: Add Todo
hidden: true
class: ""
tooltip: ""
id: add-todo
style: primary
actions:
  - type: command
    command: quickadd:choice:567cf54d-9450-4bdb-aaaa-14ff398423e8

TASK
FROM #meeting 
WHERE project = this.project and assigned and !completed and text != ""
SORT project
GROUP by assigned

{memory^selected} as selected

---

//return engine.markdown.create(`![[${context.bound.selected}]]`)