Skip to content
Discussion options

You must be logged in to vote

If you want to keep the Quarto documents for your students, use code tools to make it part of the documents.
https://quarto.org/docs/output-formats/html-code.html#code-tools

Also you can linked formats, see https://quarto.org/docs/output-formats/html-multi-format.html#specifying-formats-to-link.

  • _quarto.yml
project:
  type: website

website:
  title: "listing-with-unrendered"
  navbar:
    left:
      - href: index.qmd
        text: Home
      - problem-sets.qmd

format:
  html:
    theme: cosmo
    css: styles.css
    toc: true
  • problem-sets.qmd
---
title: "Problem Sets"
listing:
- id: ps-listing
  template: assignments-ps.ejs
  contents: posts
  sort: "date desc"
  type: table
  fields

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@andrewpbray
Comment options

@andrewpbray
Comment options

@mcanouil
Comment options

@mcanouil
Comment options

Answer selected by andrewpbray
@andrewpbray
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants