From 61b6d05b687225c10a3f26ea5b5706bc8bca3413 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 21 Jun 2026 20:24:47 +0200 Subject: [PATCH 1/3] fix: preserve `small` tags in generated search index Signed-off-by: squidfunk --- python/zensical/extensions/search.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/zensical/extensions/search.py b/python/zensical/extensions/search.py index 6f40f4c..0c007e2 100644 --- a/python/zensical/extensions/search.py +++ b/python/zensical/extensions/search.py @@ -378,6 +378,7 @@ keep = { "li", "ol", "ul", + "small", "sub", "sup", } From fb4637cbcd3906b9894587998069ce94f6aff26f Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 21 Jun 2026 20:25:50 +0200 Subject: [PATCH 2/3] chore: update `.mono.toml` to account for configuration changes Signed-off-by: squidfunk --- .mono.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mono.toml b/.mono.toml index 8b76b92..f1f7d96 100644 --- a/.mono.toml +++ b/.mono.toml @@ -21,7 +21,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. -[changeset.scopes] +[scopes] compat = "python/**" docker = "Dockerfile" ui = "scripts/**" From aeb31ad28e060c162792bcf2d9768fd5a35f2b12 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 21 Jun 2026 20:27:03 +0200 Subject: [PATCH 3/3] fix: update ui to v0.0.19 Signed-off-by: squidfunk --- scripts/prepare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prepare.py b/scripts/prepare.py index b285377..8f9c115 100755 --- a/scripts/prepare.py +++ b/scripts/prepare.py @@ -39,7 +39,7 @@ def main() -> int: # Clone UI repository into tmp directory repo_url = "https://github.com/zensical/ui.git" - repo_tag = "v0.0.18" + repo_tag = "v0.0.19" dest_dir = os.path.join("tmp", "ui") if not os.path.exists(dest_dir): subprocess.run(["git", "clone", repo_url, dest_dir], check=True)