Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,12 @@ jobs:
- ubuntu-latest
- windows-latest
- macOS-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This file contains the changelog for the PlutoExtras package. It follows the [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) format.

## [0.7.17] - 2026-05-01
### Fixed
- Fixed the `ExtendedTableOfContents()` output getting hidden if contained in a hidden part of the notebook
- Make hidden cells with `always-show-output` be completely invisible in the notebook by ensuring they don't have a `min-height` value.

## [0.7.16] - 2025-09-26

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PlutoExtras"
uuid = "ed5d0301-4775-4676-b788-cf71e66ff8ed"
authors = ["Alberto Mengali <disberd@gmail.com>"]
version = "0.7.16"
version = "0.7.17"

[deps]
AbstractPlutoDingetjes = "6e696c72-6542-2067-7265-42206c756150"
Expand Down
1 change: 1 addition & 0 deletions src/extended_toc/extended_toc.css
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,5 @@ pluto-notebook[hide-enabled] pluto-cell[always-show-output][toc-hidden]:not(.cod

pluto-notebook[hide-enabled] pluto-cell[always-show-output][toc-hidden]:not(.code_differs) {
margin-top: 0px;
min-height: 0px;
}
4 changes: 2 additions & 2 deletions src/extended_toc/extended_toc.js
Original file line number Diff line number Diff line change
Expand Up @@ -748,8 +748,8 @@ window.scroll_to = scroll_to;
window.save_to_file = save_to_file;
window.floating_ui = floating_ui;

// Set cell attribute for always-show
cell.toggleAttribute('always-show', true)
// Set cell attribute for always-show-output
cell.toggleAttribute('always-show-output', true)

invalidation.then(() => {
observer.disconnect()
Expand Down
16 changes: 8 additions & 8 deletions test/notebooks/extended_toc.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### A Pluto.jl notebook ###
# v0.20.17
# v0.20.21

#> custom_attrs = ["enable_hidden", "hide-enabled"]

Expand Down Expand Up @@ -170,7 +170,7 @@ PlutoUI = "~0.7.49"
PLUTO_MANIFEST_TOML_CONTENTS = """
# This file is machine-generated - editing it directly is not advised

julia_version = "1.12.0-rc2"
julia_version = "1.12.2"
manifest_format = "2.0"
project_hash = "dfc547520a0f28a7cf33ecc42c4ecaba11dd2b7e"

Expand Down Expand Up @@ -221,7 +221,7 @@ version = "1.11.0"
[[deps.Downloads]]
deps = ["ArgTools", "FileWatching", "LibCURL", "NetworkOptions"]
uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
version = "1.6.0"
version = "1.7.0"

[[deps.FileWatching]]
uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
Expand Down Expand Up @@ -281,7 +281,7 @@ version = "0.6.4"
[[deps.LibCURL_jll]]
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "OpenSSL_jll", "Zlib_jll", "nghttp2_jll"]
uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0"
version = "8.11.1+1"
version = "8.15.0+0"

[[deps.LibGit2]]
deps = ["LibGit2_jll", "NetworkOptions", "Printf", "SHA"]
Expand Down Expand Up @@ -346,7 +346,7 @@ version = "0.3.29+0"
[[deps.OpenSSL_jll]]
deps = ["Artifacts", "Libdl"]
uuid = "458c3c95-2e84-50aa-8efc-19380b2a3a95"
version = "3.5.1+0"
version = "3.5.4+0"

[[deps.Parsers]]
deps = ["Dates", "PrecompileTools", "UUIDs"]
Expand Down Expand Up @@ -470,17 +470,17 @@ version = "1.3.1+2"
[[deps.libblastrampoline_jll]]
deps = ["Artifacts", "Libdl"]
uuid = "8e850b90-86db-534c-a0d3-1478176c7d93"
version = "5.13.1+1"
version = "5.15.0+0"

[[deps.nghttp2_jll]]
deps = ["Artifacts", "Libdl"]
uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
version = "1.64.0+1"

[[deps.p7zip_jll]]
deps = ["Artifacts", "Libdl"]
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Libdl"]
uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"
version = "17.5.0+2"
version = "17.7.0+0"
"""

# ╔═╡ Cell order:
Expand Down