include 'header' section in yaml #2237
-
I am writing a document that needs to be rendered as GitHub flavored markdown and needs to include the key ---
title: "A title"
header:
image: "/somewhere/beautiful.jpg"
---
rest of the document if I try to include the ---
title: "A title"
header:
image: "/somewhere/beautiful.jpg"
keep-yaml: true
format: gfm
---
rest of the document Then quarto errors because I assume that for quarto (or pandoc)
Is there a way to add this Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
As a workaround, you can add |
Beta Was this translation helpful? Give feedback.
As a workaround, you can add
validate-yaml: false
to disable validation entirely. Can you point me to the github documentation that talks about this YAML key? I want to make sure we get the schema right.