Implement scrolling table of contents#56
Merged
DanilaFe merged 8 commits intochapel-lang:mainfrom Feb 24, 2026
Merged
Conversation
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
Member
|
I just did a short test-drive of this and liked the result. I have not done anything to review the PR itself (yet, at least) |
e-kayrakli
approved these changes
Feb 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR implements a scrolling table of contents, closes #40.
The steps:
.stickyclass to use theposition: stickyCSS property.position: stickycauses the element that's sticky to attach to the top of the window if its top is about to go past the edge, and travel with it as far as its parent container will allow..table-of-contentsclass. Adjust its CSS properties to make it as big as the post content, to allow the table of contents to travel all along it, but no higher or lower.prefers-reduced-motion, which is a CSS accessibility property.<noscript>tag to reset position back torelativeinstead ofstickywhen JS is not present.overfullthat similarly undoes stickiness.While there, I noticed that we don't use
numberedsidenote.html, so I deleted it.Reviewed by @e-kayrakli -- thanks!