quarto-hover

Here is an simple R plot which will be displayed in the hover preview.

plot(1:10)
Figure 1

Here is an interactive plot which won’t be displayed in the hover preview.

library(plotly)
plot_ly(x = 1:10, y = 1:10, z = 10:1, type = 'scatter3d', mode = 'markers')
Figure 2

When you hover over the link to Figure 1 you see a preview, but not for Figure 2.