Basic
<%* var events = await app.plugins.getPlugin('ics').getEvents(moment(tp.file.title,'YYYY-MM-DD')); events.sort((a,b) => a.utime - b.utime).forEach((e) => { tR+=`- [ ] ${e.time} - ${e.endtime} ${e.summary} ${e.location? e.location : ''}\n` }) %>
Advanced
<%*
var events = await app.plugins.getPlugin('ics').getEvents(moment(tp.file.title,'YYYY-MM-DD'));
events.sort((a,b) => a.utime - b.utime).forEach((e) => {
const calendar = e.icsName.replace(" ","-");
const callUrl = e.callUrl? ` [${e.callType}](${e.callUrl})` : '';
const location = e.location? ` 📍 *(${e.location})*` : '';
tR+=`- [ ] ${e.time}-${e.endTime} **${e.summary}**${location}${callUrl} #${calendar}\n`
if (e.description) {
const inlineDescription = e.description.replace(/(?:\r\n|\r|\n)/g," ").replace(/\s{2,}/g," ");
tR+=` - ${inlineDescription}\n`
}
})
%>
My Template
<%*
var events = await app.plugins.getPlugin('ics').getEvents(moment(tp.file.title,'YYYY-MM-DD'));
events.sort((a,b) => a.utime - b.utime).forEach((e) => {
const calendar = e.icsName.replace(" ","-");
const callUrl = e.callUrl? ` [${e.callType}](${e.callUrl})` : '';
const location = e.location? ` (${e.location})` : '';
tR+=`- **${e.time} - ${e.endTime}** ${e.summary}${callUrl}\n`
})
%>
References
Templater code for Day Planner with start and end time, conditional call links, indented description and some formatting for readability · cloud-atlas-ai/obsidian-ics · Discussion #74 · GitHub
Comments