1
0

Rename fulltext search

This commit is contained in:
Zef Hemel 2022-10-19 11:30:36 +02:00
parent cd5c2ff9c2
commit 006ad76c85
3 changed files with 13 additions and 4 deletions

View File

@ -18,7 +18,7 @@ import fileSystemSyscalls from "../plugos/syscalls/fs.deno.ts";
import {
ensureFTSTable,
fullTextSearchSyscalls,
} from "../plugos/syscalls/fulltext.knex_sqlite.ts";
} from "../plugos/syscalls/fulltext.sqlite.ts";
import sandboxSyscalls from "../plugos/syscalls/sandbox.ts";
import shellSyscalls from "../plugos/syscalls/shell.node.ts";
import {

View File

@ -4,9 +4,18 @@ release.
---
## 0.1.3
* Frontmatter support! You can now use front matter in your markdown, to do this start your page with `---` and end it with `---`. This will now be the preferred way to define page meta data (although the old way will still work). The old `/meta` slash command has now been replaced with `/front-matter`.
* Tags are now indexed as page meta without the prefixing `#` character, the reason is to make this compatible with Obsidian. You can now attach tags to your page either by just using a `#tag` at the top level of your page, or by adding a `tags` attribute to your front matter.
* Silver Bullet now runs on Windows!
- Silver Bullet now runs on Windows!
- Frontmatter support! You can now use front matter in your markdown, to do this
start your page with `---` and end it with `---`. This will now be the
preferred way to define page meta data (although the old way will still work).
The old `/meta` slash command has now been replaced with `/front-matter`.
- Tags are now indexed as page meta without the prefixing `#` character, the
reason is to make this compatible with Obsidian. You can now attach tags to
your page either by just using a `#tag` at the top level of your page, or by
adding a `tags` attribute to your front matter.
- {[Search Space]} works again. You may have to {[Space: Reindex]} to get
results.
---