Skip to content

are (or how ?) metadata propagated from project (or _metadata.yml) to .qmd #11138

Answered by cscheid
xtimbeau asked this question in Q&A
Discussion options

You must be logged in to vote

This looks like a Quarto bug to me!

I created a small repro like this:

_quarto.yml

# _quarto.yml
project:
  type: website

website:
  title: "issue-11138"
  navbar:
    left:
      - href: index.qmd
        text: Home
      - about.qmd

format:
  html:
    theme: cosmo
    css: styles.css
    toc: true

mymeta:
  key1: projectwise_value
  key2: projectwise_value_2

index.qmd

---
title: "issue-11138"
filters:
  - test.lua
mymeta:
  key1: projectwise_value_override
---

This is a Quarto website.

To learn more about Quarto websites visit <https://quarto.org/docs/websites>.

Debugging

Quarto is clearly attempting to override the first key while maintaining the second value, as evidenced by th…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@mcanouil
Comment options

Answer selected by mcanouil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
lua Issues related to the lua codebase, filter chain, etc
3 participants