You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---title: "A Multi-page HTML Document"author: "Yihui Xie and Romain Lesur"date: "`r Sys.Date()`"output:
pagedown::html_paged:
self_contained: falselof: true # insert a list of figures---
Some text
```{r, echo = TRUE, fig.cap = 'A very simple plot'}
plot(1)```
It renders to
See the dots in the code chunk. It seems to be there only when lof: true
in term of HTML code, it seems to be some specific spans to be added
We should probably see if newer paged.js still have this hooks, and if so add some CSS specific to handle this Pandoc feature , or some JS to remove those span in code blocks.
Just noticed that while testing other things
It renders to
See the dots in the code chunk. It seems to be there only when
lof: true
in term of HTML code, it seems to be some specific spans to be added
With special CSS rule
Maybe only some CSS to fix but I suspect this
<span>
should not be there 🤔All HTML structure where the leaders is included
The text was updated successfully, but these errors were encountered: