From 0302c5776dbb939ffc6ccc467c46f4812f1b9ffb Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Mon, 5 Feb 2024 20:12:46 +0100 Subject: [PATCH] Updated changelog --- website/CHANGELOG.md | 8 ++++++++ website/Functions.md | 3 +++ 2 files changed, 11 insertions(+) diff --git a/website/CHANGELOG.md b/website/CHANGELOG.md index f7e17360..620907bc 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -1,6 +1,14 @@ An attempt at documenting the changes/new features introduced in each release. +--- +## Edge +_These features are not yet properly released, you need to use [the edge builds](https://community.silverbullet.md/t/living-on-the-edge-builds/27) to try them._ + +* Numerous bug fixes and significant performance improvements in rendering templates (which now happen server-side), including code completion fixes. +* New `{{#each @varname in }}` syntax in [[Template Language#each directive]]. +* New [[Functions#readPage(name)]] function + --- ## 0.7.0 diff --git a/website/Functions.md b/website/Functions.md index 08c421b2..3efe0e87 100644 --- a/website/Functions.md +++ b/website/Functions.md @@ -60,3 +60,6 @@ This very page exists: {{pageExists(@page.name)}} And this one: {{pageExists("non-existing")}} ``` + +## readPage(name) +Reads in the content of the page `name` and returns it as a string. \ No newline at end of file