This is a plugin for the Joplin note-taking app.
It creates a calendar view of events that have been specified using the YAML syntax within a fenced block.
Create a fenced block with the codetype joplin-plugin-event-calendar
```joplin-plugin-event-calendar
group: day
events:
- date: 2012-11-05
icon: 🔥
title: Bonfire night
text: We have been collecting wood for a week now...
bgColor: orange
```
Events are specified using the YAML syntax, with the following keys:
Sets the grouping for the view
- optional
- default
day
- accepts :
day
,week
,month
,d
,w
,m
Each individual event is a list with its own properties
date:
The date of the event
- required
- accepts : yyyy-mm-dd or mm-dd-yyyy
icon:
- optional
- accepts : string
The icon for the event
title
The title or heading of the event
- required
- accepts : string
text:
A more detailed description of the event
- optional
- accepts : string
bgColor:
The background color for the event container
- optional
- default : random
- accepts : string
This project was inspired by the Joplin Life Calendar Plugin