Yihui Xie
Yihui Xie
Thanks! For now, I can't think of possible problems in other packages, either.
I'm not sure what's going on here (sounds like a **blogdown** bug), but perhaps it will be easier if you just disable the `math_method` and load katex in your Hugo...
Rendering on the server side makes it possible to view the math expressions offline, but it will also blow up the size of the HTML document. If your goal is...
#162 was about simple Markdown tables generated from `knitr::kable()`. I'm not sure if the fix there would apply to gt tables, which are much much more complicated.
Correct. An alternative approach is [litedown](https://github.com/yihui/litedown). I have done my own implementation of HTML fragmentation last year (i.e., pages.js), and here is a minimal example: ````md --- title: "Test" output:...
It's hard to tell without a reprex. `$` is typically from jQuery. Has jQuery been loaded before line 1071? Anyway, you may try to keep trimming the content of your...
It seems that this issue needs to be resolved in kableExtra: https://github.com/haozhu233/kableExtra/blob/master/inst/kePrint-0.0.1/kePrint.js I don't think there's anything we can do in pagedown. Perhaps these warnings are harmless and can be...
Thanks for trying it out! The window size is irrelevant to PDF printing (only applies to PNG/JPEG screenshots). The paper size and orientation should be defined in CSS: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@page Edit:...
I just ran into the same issue. [Playground](https://lightningcss.dev/playground/#%7B%22minify%22%3Atrue%2C%22customMedia%22%3Atrue%2C%22cssModules%22%3Afalse%2C%22analyzeDependencies%22%3Afalse%2C%22targets%22%3A%7B%22chrome%22%3A6225920%7D%2C%22include%22%3A0%2C%22exclude%22%3A1%2C%22source%22%3A%22p%20%7B%5Cn%20%20%26%20*%20%7B%5Cn%20%20%20%20margin%3A%200%3B%5Cn%20%20%7D%5Cn%20%20margin%3A%201em%3B%5Cn%20%20%26%20%3Ais(a)%20%7B%5Cn%20%20%20%20width%3A%202em%3B%5Cn%20%20%7D%5Cn%7D%22%2C%22visitorEnabled%22%3Afalse%2C%22visitor%22%3A%22%7B%5Cn%20%20Color(color)%20%7B%5Cn%20%20%20%20if%20(color.type%20%3D%3D%3D%20'rgb')%20%7B%5Cn%20%20%20%20%20%20color.g%20%3D%200%3B%5Cn%20%20%20%20%20%20return%20color%3B%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%22%2C%22unusedSymbols%22%3A%5B%5D%2C%22version%22%3A%22local%22%7D) ```css p { & * { margin: 0; } margin: 1em; & :is(a) { width: 2em; } } ``` Output: ```css p{&...
Yes, I think so.