-
Beta Was this translation helpful? Give feedback.
Answered by
jpmorr
Nov 30, 2023
Replies: 1 comment 21 replies
-
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.
21 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So a little bit more testing shows that the amount of the image rendered is dependent on the size of the
title
string. Since I was trying to pass in an title with an empty or small string I would get no title banner. So just pass in a few line breaks and it works perfectly.This is a hack, but works as I want it to.
The image path is a problem for some reason though. Image in the root works fine, but any other path the image fails to render for some reason.