From 035789c44ee3fde03c314e9aa0b4c444537b0ba9 Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Tue, 23 Jan 2024 01:27:23 +0100 Subject: [PATCH] fix bookmark on SRFI-210 document #287 --- CHANGELOG.md | 3 ++- lib/css/terminal.css | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71207fa20..b40f18f62 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## 1.0.0-beta.19 ### Breaking -* `get-environment-variables` and `get-environment-variable` returns nil and undefined in the browser +* change `get-environment-variables` and `get-environment-variable` returns nil and undefined in the browser ### Features * add `vector-for-each` and `vector-copy!` function from R7RS * add `string-for-each`, `string-downcase`, and `string-upcase` from R7RS @@ -11,6 +11,7 @@ * fix wrong strings in `string-fill!` * fix `string-set!` to mutate the string and work on any expression * fix tokenizing regex that ends with hash +* fix bookmark on SRFI-210 document [#287](https://github.com/jcubic/lips/issues/287) ## 1.0.0-beta.18 ### Breaking diff --git a/lib/css/terminal.css b/lib/css/terminal.css index 2b9cae60a..57e0f6365 100644 --- a/lib/css/terminal.css +++ b/lib/css/terminal.css @@ -2,6 +2,9 @@ --background: #000; --color: #ccc; } +.terminal .token::before, .terminal .token::after { + display: none; +} .terminal .token.__doc__::before { color: var(--base-background, #000); }