Monthly notes

by Ben Johnson
5
4
3
2
1
Score: 50/100

Description

Like the daily note plugin for obsidian but for monthly notes.

Reviews

No reviews yet.

Stats

0
stars
129
downloads
0
forks
78
days
73
days
77
days
6
total PRs
0
open PRs
0
closed PRs
6
merged PRs
0
total issues
0
open issues
0
closed issues
20
commits

Latest Version

3 months ago

Changelog

What's Changed

Full Changelog: https://github.com/benjohnson/obsidian-monthly-notes/compare/1.0.2...1.0.3

README file from

Github

Monthly Notes

An Obsidian plugin to create or open this month's note with a single click. This project attempts to replicate the features of the core Daily Notes plugin without adding additional features. Many other similar plugins add tons of complexity: we're trying for small and simple.

codecov

Usage

  • Click the calendar ribbon icon, or
  • Run the Open monthly note command from the command palette.

If this month's note already exists, it opens. Otherwise it's created (along with its folder, if needed) and opened.

Settings

  • Date format — how notes are named. Pick a preset or a custom moment.js format (default: YYYY-MM).
  • New file location — the folder new notes are placed in.
  • Template file location — a note to use as a template for new monthly notes.

Template variables

Templates support the following placeholders:

Variable Replaced with
{{title}} the note's name
{{date}} current date (YYYY-MM-DD)
{{time}} current time (HH:mm)

{{date}} and {{time}} accept an optional moment.js format after a colon — e.g. {{date:dddd}}Tuesday, {{time:h:mm A}}2:30 PM.

Development

bun install
bun run dev    # build and watch
bun test       # run tests
bun run build  # production build