Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

mpadge/quarto-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

quarto test

This was a test repo for this quarto issue. All now fixed thanks to @cderv, so this repo has been archived.


This reproduces a bug when building a quarto book which includes a html widget. The _quarto.yml includes rendering for both html and pdf. The makefile includes by default "html" and "pdf". make html works fine, but make pdf (quarto render index.Rmd -t pdf) fails.

The index.Rmd has a YAML header with always_allow_html: true. Removing this causes failure because "Functions that produce HTML output found in document targetting pdf output." This happens even though the lines are embedded within a conditional statement:

::: {.content-hidden when-format="pdf"}

That same error arises regardless of how that conditional clause is expressed, for example as:

::: {.content-hidden unless-format="html:js"}
---

That error message goes on to recommend inserting `always_allow_html: true`, as
in the current version in this repo. Doing that leads to an xelatex error:

LaTex Error: Missing \begin{document}


This happens because the HTML lines for the widget created in `index.Rmd` are
inserted directly into `index.tex`, even though the conditional clause should
prevent that.

---

## Summary

The `.content-hidden` conditional clause does not seem to be hiding the content
in the rendered `index.tex`, preventing it being compiled.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published