Testing this yo
Fancy stuff here!!!!!!
#meta
This library adds a basic git synchronization functionality to SilverBullet. It should be considered a successor to silverbullet-git implemented in Space Lua.
The following commands are implemented:
${widgets.commandButton("Git: Sync")}
- Adds all files in your folder to git
#meta
Proof of concept (and WIP) AI features for SilverBullet.
Currently implemented commands:
AI: Chat(bound to Cmd-Enter/Ctrl-Enter)AI: Analyze With Prompt(see below for an example)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export class Focalboard { | |
| constructor(url, token, workspaceId) { | |
| this.url = url; | |
| this.token = token; | |
| this.workspaceId = workspaceId; | |
| } | |
| async allBlocks() { | |
| let result = await fetch(`${this.url}/api/v1/workspaces/${this.workspaceId}/blocks?type=view`, { | |
| headers: { |
NewerOlder