WeMakeMachines / joplin-plugin-event-calendar

A simple event calendar plugin for Joplin
MIT License
8 stars 1 forks source link

Event Calendar Plugin for Joplin

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.

Example Day view

preview

Features

How to use

Create a fenced block with the codetype joplin-plugin-event-calendar

Example with one event

```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:

group:

Sets the grouping for the view

  • optional
  • default day
  • accepts : day, week, month, d, w, m

events:

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

Acknowledgements

This project was inspired by the Joplin Life Calendar Plugin