A simple Calendar:
Add recurring events by Hebrew calendar:
On the right hand side, click "try it", scroll down to the script, modify the parameters, click "execute".
A simpla JS script, can be enhanced to read a table of events or generate interactively.
var event = {
summary: 'י"ד לחודש',
description: 'ארוע זה חוזר כל חודש בי"ד לחודש.',
start: {
date: '2022-02-05'
},
end: {
date: '2022-02-05'
},
recurrence: [
'RRULE:FREQ=MONTHLY;RSCALE=HEBREW'
],
};
await calendar.events.insert({
auth,
calendarId: 'primary',
resource: event,
})