1
0

Merge branch 'main' of github.com:silverbulletmd/silverbullet into main

This commit is contained in:
Zef Hemel 2022-07-25 12:38:03 +00:00
commit 73aa1435d9
3 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# Silver Bullet
Silver Bullet (SB) is an extensible, open source **personal knowledge playground**. At its core its a clean markdown-based writing/note taking application that stores your _pages_ (notes) as plain markdown files in a folder referred to as a _space_. Pages can be cross-linked using the `[[link to other page]]` syntax. This makes it a simple tool for [Personal Knowledge Management](https://en.wikipedia.org/wiki/Personal_knowledge_management). However, once you leverage its various extensions (called _plugs_) it can feel more like a _knowledge playground_, allowing you to annotate, combine and query your accumulated knowledge in creative ways specific to you.
Silver Bullet (SB) is an extensible, open source **personal knowledge platform**. At its core its a clean markdown-based writing/note taking application that stores your _pages_ (notes) as plain markdown files in a folder referred to as a _space_. Pages can be cross-linked using the `[[link to other page]]` syntax. This makes it a simple tool for [Personal Knowledge Management](https://en.wikipedia.org/wiki/Personal_knowledge_management). However, once you leverage its various extensions (called _plugs_) it can feel more like a _knowledge platform_, allowing you to annotate, combine and query your accumulated knowledge in creative ways specific to you.
For more in-depth information, an interactive demo, and links to more background, check out the [Silver Bullet website](https://silverbullet.md) (published from this repos `website/` folder).

View File

@ -37,7 +37,11 @@ class NodeWorkerWrapper implements WorkerLike {
// Look for the node_modules directory, to be passed to the worker to find e.g. the vm2 module
export let nodeModulesDir = __dirname;
while (!fs.existsSync(nodeModulesDir + "/node_modules/vm2")) {
while (
!fs.existsSync(nodeModulesDir + "/node_modules/vm2") &&
nodeModulesDir !== "/"
) {
nodeModulesDir = path.dirname(nodeModulesDir);
}

View File

@ -12,7 +12,7 @@
top: 0;
bottom: 0;
max-height: 290px;
overflow: auto;
overflow: hide;
z-index: 100;
border: rgb(103, 103, 103) 1px solid;
border-radius: 8px;