16 lines
392 B
TypeScript
16 lines
392 B
TypeScript
import { insertAtCursor } from "@silverbulletmd/plugos-silverbullet-syscall/editor";
|
|
|
|
export function niceDate(d: Date): string {
|
|
return d.toISOString().split("T")[0];
|
|
}
|
|
|
|
export async function insertToday() {
|
|
await insertAtCursor(niceDate(new Date()));
|
|
}
|
|
|
|
export async function insertTomorrow() {
|
|
let d = new Date();
|
|
d.setDate(d.getDate() + 1);
|
|
await insertAtCursor(niceDate(d));
|
|
}
|