Quarto模版

Quarto
作者

yangjh

发布日期

2023年7月11日

在listing中,可以自定义 Quarto 模版,模版由两部分组成,.ejs文件负责表现层,.yml文件提供内容,通过id属性,将生成的内容渲染到对应的div中,例如:

---
listing:
  - id: books
    template: books.ejs
    contents: books.yml
description: |
  A gallery of books by Yangjh created with Quarto.
---


::: {#books .column-page}
:::

参考文献

  1. https://quarto.org/docs/websites/website-listings-custom.html#template-parameters
回到顶部