Skip to content

Commit 805578a

Browse files
committed
update README
1 parent f0b61f5 commit 805578a

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

README.md

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -42,33 +42,3 @@ Casually jot stuff down and Hyprnote will craft a meeting note based on your mem
4242
Hyprnote is local-first which means you can be off the grid and it's perfectly fine.
4343

4444
<img src="https://github.com/user-attachments/assets/e5014024-3f6a-457a-8f1c-3b183883b782" width="720" />
45-
46-
### Extensions & Plugins
47-
Just like VSCode, You can add or create extensions based on your circumstances.
48-
49-
<img src="https://github.com/user-attachments/assets/341d2e6c-a2c7-432b-95b8-fdc2018838d5" width="720" />
50-
51-
<br />
52-
<br />
53-
54-
For example, [transcript extension](https://docs.hyprnote.com/extensions/transcript.html) is powered by [listener plugin](https://docs.hyprnote.com/plugins/listener.html).
55-
56-
```ts
57-
useEffect(() => {
58-
const channel = new Channel<SessionEvent>();
59-
listenerCommands.subscribe(channel);
60-
61-
channel.onmessage = (e) => {
62-
if (e.type === "started") {
63-
setIsLive(true);
64-
}
65-
if (e.type === "stopped") {
66-
setIsLive(false);
67-
}
68-
};
69-
70-
return () => {
71-
listenerCommands.unsubscribe(channel);
72-
};
73-
}, []);
74-
```

0 commit comments

Comments
 (0)