This is a plugin for Obsidian (https://obsidian.md).
- Calculates time diffs in
timediff
markdown block
```timediff
11:10 - 12:20
12:38 - 14:00
23:20 - 23:59
00:00 - 00:55
```
In reading mode diffs between the dates will be parsed and presented in readable format. Sum of diffs will be presented at the bottom of the block.
TimeDiff plugin - Show total time diff count in current file
command, which calculates total sum of alltimediff
blocks on the page.TimeDiff plugin - Insert timediff block
command, which insertstimediff
block in current cursor position.TimeDiff plugin - Insert current time
command, which inserts current time in current cursor position.
- Clone your repo to a local development folder. For convenience, you can place this folder in your
.obsidian/plugins/your-plugin-name
folder. - Install NodeJS, then run
yarn
in the command line under your repo folder. - Run
yarn run dev
to compile your plugin frommain.ts
tomain.js
. - Make changes to
main.ts
(or create new.ts
files). Those changes should be automatically compiled intomain.js
. - Reload Obsidian to load the new version of your plugin.
- Enable plugin in settings window.