Open jakobschumacher opened 1 month ago
There is a way to circumvent the problem by using:
#| echo: false
#| output: asis
glossary <- yaml::read_yaml("glossary.yml")
for (term in names(glossary)) {
cat("## ", term, "\n\n", glossary[[term]], "\n\n", sep = "")
}
It would be great to have a feature to add every term that is in the glossary to a specific webpage in a quarto project. For now you have to add every term on one page and then add {{< glossary table=true >}}. This is good if you have a single page. But is very cumbersome if you do a quarto book or quarto webpage
If there would be a taglike {{< glossary complete=true >}} or something similiar which adds every term that is in the glossary, that would be helpful.