Can I relocate the dark-mode button #6891
Replies: 3 comments
-
Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
-
---
title: "Reproducible Quarto Document"
format:
html:
toc: true
theme:
light: flatly
dark: darkly
---
# Section 1
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
# Section 2
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
# Section 3
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
``` |
Beta Was this translation helpful? Give feedback.
-
Oh I see now. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
When generating a html formatted document, the dark-mode button appears in the top-right corner, disappearing as the user scrolls. Is there anyway to relocate that button - preferably into the TOC?
Beta Was this translation helpful? Give feedback.
All reactions