From 5cf97272c14a55ca8d1d63a4ef0eef4a96d556d9 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Tue, 15 Aug 2023 08:53:09 +0200 Subject: [PATCH] Changelog --- website/CHANGELOG.md | 4 ++++ website/Markdown/Syntax Highlighting.md | 4 ++++ website/🔌 Directive/Query.md | 18 +++++++++--------- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/website/CHANGELOG.md b/website/CHANGELOG.md index 617a8ab..1e9c1e8 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -8,6 +8,10 @@ release. * Now syncing the currently open page every 5s with the server * Now more instantly syncing indirectly updated pages, e.g. when checking off tasks in a query * New `/page-template` slash command to apply (insert) a page [[🔌 Core/Templates|template]] at the current location +* [[Markdown/Syntax Highlighting]] for HTML +* [[Frontmatter]] attributes starting with `$` are now indexed again +* Various heavy-weight commands (such as {[Space: Reindex]} and {[Directives: Update Entire Space]}) now use an internal message queue, allowing to continue the processing even when interrupted or crashing. +* Various internal refactorings --- diff --git a/website/Markdown/Syntax Highlighting.md b/website/Markdown/Syntax Highlighting.md index 93f74c8..89c69b5 100644 --- a/website/Markdown/Syntax Highlighting.md +++ b/website/Markdown/Syntax Highlighting.md @@ -45,6 +45,10 @@ fn myFun() { ``` +```html +Regular HTML +``` + ```kotlin class MyClass { diff --git a/website/🔌 Directive/Query.md b/website/🔌 Directive/Query.md index 8579c90..9d45822 100644 --- a/website/🔌 Directive/Query.md +++ b/website/🔌 Directive/Query.md @@ -158,7 +158,7 @@ For the sake of simplicity, we will use the `page` data source and limit the res |name |lastModified |contentType |size|perm|pageAttribute| |----------|-------------|-------------|----|--|-----| -|API |1688987324351|text/markdown|1405|rw| | +|API |1691499342795|text/markdown|1879|rw| | |Attributes|1691176701257|text/markdown|1466|rw|hello| |Authelia |1688482500313|text/markdown|866 |rw| | @@ -171,13 +171,13 @@ For the sake of simplicity, we will use the `page` data source and limit the res **Result:** Okay, this is what we wanted but there is also information such as `perm`, `type` and `lastModified` that we don't need. -|name |lastModified |contentType |size|perm|type|uri |repo |author |share-support| +|name |lastModified |contentType |size|perm|type|repo |uri |author |share-support| |--|--|--|--|--|--|--|--|--|--| -|🔌 Github |1691137925014|text/markdown|2206|rw|plug|github:silverbulletmd/silverbullet-github/github.plug.js |https://github.com/silverbulletmd/silverbullet-github |Zef Hemel|true| -|🔌 Mattermost|1691137924741|text/markdown|3535|rw|plug|github:silverbulletmd/silverbullet-mattermost/mattermost.plug.json|https://github.com/silverbulletmd/silverbullet-mattermost|Zef Hemel|true| -|🔌 Git |1691137924435|text/markdown|1112|rw|plug|github:silverbulletmd/silverbullet-git/git.plug.js |https://github.com/silverbulletmd/silverbullet-git |Zef Hemel| | -|🔌 Ghost |1691137922296|text/markdown|1733|rw|plug|github:silverbulletmd/silverbullet-ghost/ghost.plug.js |https://github.com/silverbulletmd/silverbullet-ghost |Zef Hemel|true| -|🔌 Share |1691137921643|text/markdown|693 |rw|plug| |https://github.com/silverbulletmd/silverbullet | | | +|🔌 Share |1691177844386|text/markdown|693 |rw|plug|https://github.com/silverbulletmd/silverbullet | | | | +|🔌 Github |1691137925014|text/markdown|2206|rw|plug|https://github.com/silverbulletmd/silverbullet-github |github:silverbulletmd/silverbullet-github/github.plug.js |Zef Hemel|true| +|🔌 Mattermost|1691137924741|text/markdown|3535|rw|plug|https://github.com/silverbulletmd/silverbullet-mattermost|github:silverbulletmd/silverbullet-mattermost/mattermost.plug.json|Zef Hemel|true| +|🔌 Git |1691137924435|text/markdown|1112|rw|plug|https://github.com/silverbulletmd/silverbullet-git |github:silverbulletmd/silverbullet-git/git.plug.js |Zef Hemel| | +|🔌 Ghost |1691137922296|text/markdown|1733|rw|plug|https://github.com/silverbulletmd/silverbullet-ghost |github:silverbulletmd/silverbullet-ghost/ghost.plug.js |Zef Hemel|true| #### 6.3 Query to select only certain fields @@ -191,11 +191,11 @@ from a visual perspective. |name |author |repo | |--|--|--| +|🔌 Share | |https://github.com/silverbulletmd/silverbullet | |🔌 Github |Zef Hemel|https://github.com/silverbulletmd/silverbullet-github | |🔌 Mattermost|Zef Hemel|https://github.com/silverbulletmd/silverbullet-mattermost| |🔌 Git |Zef Hemel|https://github.com/silverbulletmd/silverbullet-git | |🔌 Ghost |Zef Hemel|https://github.com/silverbulletmd/silverbullet-ghost | -|🔌 Share | |https://github.com/silverbulletmd/silverbullet | #### 6.4 Display the data in a format defined by a template @@ -205,11 +205,11 @@ from a visual perspective. **Result:** Here you go. This is the result we would like to achieve 🎉. Did you see how I used `render` and `template/plug` in a query? 🚀 +* [[🔌 Share]] * [[🔌 Github]] by **Zef Hemel** ([repo](https://github.com/silverbulletmd/silverbullet-github)) * [[🔌 Mattermost]] by **Zef Hemel** ([repo](https://github.com/silverbulletmd/silverbullet-mattermost)) * [[🔌 Git]] by **Zef Hemel** ([repo](https://github.com/silverbulletmd/silverbullet-git)) * [[🔌 Ghost]] by **Zef Hemel** ([repo](https://github.com/silverbulletmd/silverbullet-ghost)) -* [[🔌 Share]] PS: You don't need to select only certain fields to use templates. Templates are