Quarto模版

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
---
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