Closed rgaiacs closed 1 year ago
Related to https://github.com/mwouts/jupytext/issues/1102
Consider the follow Quarto file (named mwe.qmd):
mwe.qmd
--- title: MWE author: Raniere Silva --- Foo Bar
jupytext --from qmd --to md:myst mwe.qmd runs without error
jupytext --from qmd --to md:myst mwe.qmd
[jupytext] Reading mwe.qmd in format qmd 1.4.163 0.2.134 [jupytext] Writing mwe.md in format md:myst
and the MyST file created is
--- jupytext: text_representation: extension: .md format_name: myst format_version: 0.13 jupytext_version: 1.14.7+dev kernelspec: display_name: Python 3 (ipykernel) language: python name: python3 --- ```{raw-cell} --- title: MWE author: Raniere Silva ---
Foo Bar
The expected output is
where the `title` and `author` information is in the YAML header. Quarto's Frontmatter documentation: https://quarto.org/docs/authoring/front-matter.html MyST's Frontmatter documentation: https://mystmd.org/guide/frontmatter
Closing as the issue is with quarto, see #1102
quarto
Related to https://github.com/mwouts/jupytext/issues/1102
Consider the follow Quarto file (named
mwe.qmd
):jupytext --from qmd --to md:myst mwe.qmd
runs without errorand the MyST file created is
Foo Bar
title: MWE author: Raniere Silva jupytext: text_representation: extension: .md format_name: myst format_version: 0.13 jupytext_version: 1.14.7+dev kernelspec: display_name: Python 3 (ipykernel) language: python name: python3
Foo Bar