ox-quarto is a simple Org export backend derived from ox-md. It assumes a user who wants to utilize Quarto's extensive computational and export capabilities but who prefers to write in Org mode. The Org "wrapping", therefore, is minimal (for now).
At the moment, the exporter prioritizes passing native Quarto markup from an Org file, including YAML frontmatter. After exporting an .org file to .qmd, quarto-cli handles document creation and is a hard dependency if you want to export directly to formats like HTML and PDF.
The package is in the early stages of development, and help from folks with more elisp than I have is most welcome. (I am a beginner, now using AI to help me out with this.) Please report bugs and enhancement requests in the Issues.
An example file ox-quarto-example.org is provided that can be used to play with the features. It also serves as a reference for examples of features.
For now it's best to set #+OPTIONS: toc:nil to avoid rendering the table of contents directly in the .qmd document. ox-quarto will use Org's TITLE, SUBTITLE, AUTHOR, DATE, and BIBLIOGRAPHY fields, if available. If you have multiple bibliographies, you can use multiple #+BIBLIOGRAPHY: lines and they will be properly formatted as a YAML array.
| Option | Description |
|---|---|
#+QUARTO_OPTIONS |
Pass elements to Quarto's YAML frontmatter (ex., toc:true toc-depth:2). Multiple lines are concatenated automatically. |
#+QUARTO_FRONTMATTER |
A filename or inline YAML to insert into the frontmatter block. Filenames are resolved relative to the .org file's directory. |
#+QUARTO_<FORMAT>_OPTIONS |
Format-specific options placed under Quarto's format: key. Replace <FORMAT> with any Quarto output format (ex., #+QUARTO_HTML_OPTIONS: toc:true, #+QUARTO_PDF_OPTIONS: toc:false). Multiple lines and multiple formats are supported. |
#+QUARTO_PREVIEW_ARGS |
Pass command line arguments to quarto preview when running preview from the export menu (ex., --port 4444). Can be specified across multiple lines. |
#+QUARTO_RENDER_ARGS |
Pass command line arguments to quarto render when rendering from the export menu (ex., --output testfile.docx). Can be specified across multiple lines. |
ox-quarto does not check for duplicate keys in the frontmatter, so if you use Org's DATE field and set date again in QUARTO_OPTIONS or your QUARTO_FRONTMATTER file, you will get a compilation error from quarto-cli.
#+QUARTO_HTML_OPTIONS: toc:true code-fold:true
#+QUARTO_PDF_OPTIONS: toc:false
exports to:
format:
html:
toc: true
code-fold: true
pdf:
toc: falseQuarto extension format names that contain hyphens are supported:
#+QUARTO_ACM-PDF_OPTIONS: toc:false fontsize:11pt
When a #+QUARTO_FRONTMATTER file (or inline block) already contains a format: section, ox-quarto merges it with any #+QUARTO_<FORMAT>_OPTIONS keywords rather than emitting two separate format: keys. The merged output contains a single format: block with a single sub-block per format.
Precedence rules:
- If the same format+key appears in both the frontmatter and a
#+QUARTO_<FORMAT>_OPTIONSline, the value from the org file takes precedence. - Keys present in only one source are included unchanged.
For example, given a frontmatter file containing:
format:
pdf:
toc: true
header-includes: |
\usepackage{booktabs}and the org file:
#+QUARTO_FRONTMATTER: frontmatter.yaml
#+QUARTO_PDF_OPTIONS: toc:false fontsize:12pt
the exported frontmatter will contain:
format:
pdf:
toc: false
header-includes: |
\usepackage{booktabs}
fontsize: 12ptNote: The merge parser handles YAML block scalars (|, >) and preserves their content verbatim. Nested mappings under a format key (e.g., a shift-heading-level-by sub-map) are not parsed and should be kept exclusively in the frontmatter file.
ox-quarto supports native Quarto/Pandoc citation generation.
org-cite: Fully supported natively. When using theorg-citesyntax (e.g.,[cite:@key1;@key2]),ox-quartoregisters a custom export processor that translates the citations, prefixes, and locators into valid Pandoc Markdown citations ([@key1; @key2]).org-ref:ox-quartointerceptsorg-refcitation links (e.g.,cite:key1,key2) and converts them into properly formatted Pandoc equivalents.
The following org-cite citation styles are supported:
| Style | Org syntax | Output |
|---|---|---|
| Default (parenthetical) | [cite:@key] |
[@key] |
Suppress author (:na) |
[cite/na:@key] |
[-@key] |
Text citation (:t) |
[cite/t:@key] |
@key |
Bare internal links whose targets begin with one of Quarto's reserved cross-reference prefixes (fig-, tbl-, sec-, eq-, etc.) are transcoded to @-references:
See [[fig-myfig]].
exports to:
See @fig-myfig.ox-quarto supports Quarto's fenced div syntax (:::) through Org special blocks. The block name becomes the CSS class in the exported .qmd file.
#+BEGIN_column-margin
This appears in the margin.
#+END_column-margin
exports to:
::: {.column-margin}
This appears in the margin.
:::This works for any Quarto div type: callouts (callout-note, callout-warning, etc.), content visibility (content-hidden, content-visible), column layouts (column-margin), and more.
For callout blocks, use the :title parameter on the #+BEGIN_ line:
#+BEGIN_callout-important :title "My Callout Title"
Oh hai, Mark.
#+END_callout-important
exports to:
::: {.callout-important}
## My Callout Title
Oh hai, Mark.
:::You can pass attributes using #+ATTR_QUARTO: or inline parameters on the #+BEGIN_ line. Inline parameters take precedence when both specify the same key.
#+ATTR_QUARTO: :id my-note :collapse true
#+BEGIN_callout-note :title "Collapsible note"
This is a collapsible note.
#+END_callout-note
exports to:
::: {#my-note .callout-note collapse="true"}
## Collapsible note
This is a collapsible note.
:::ox-quarto supports all three Org footnote forms:
| Form | Org syntax | Output |
|---|---|---|
| Standard reference | [fn:ID] with a separate [fn:ID] content definition |
[^ID] / [^ID]: content |
| Named inline | [fn:ID: content] |
[^ID] with definition appended after the paragraph |
| Anonymous inline | [fn:: content] |
^[content] |
Org tables are exported as Markdown pipe tables. A horizontal rule in the Org table becomes the header separator row, with dash counts matching the Org column widths. table.el-style tables fall back to HTML export.
| Column A | Column B |
|----------+----------|
| foo | bar |
| baz | qux |
exports to:
| Column A | Column B |
|----------|----------|
| foo | bar |
| baz | qux |Use #+CAPTION for the table caption, #+NAME for the cross-reference label, and #+ATTR_QUARTO: for alignment:
| Keyword | Description |
|---|---|
#+NAME |
Cross-reference label (e.g. tbl-mytable). Takes precedence over :label. |
#+ATTR_QUARTO: :align |
Alignment string, one character per column: l (left), r (right), c (center), other (default). |
#+ATTR_QUARTO: :label |
Fallback cross-reference label if #+NAME is absent. |
Multiple #+ATTR_QUARTO: lines are supported and merged.
#+NAME: tbl-example
#+CAPTION: This is a caption.
#+ATTR_QUARTO: :align lrcd
| Col1 | Col2 | Col3 | Col4 |
|------------+------+------+------|
| Some stuff | 2 | 6 | 10 |
| More stuff | 4 | 8 | 12 |
exports to:
| Col1 | Col2 | Col3 | Col4 |
|:-----------|-----:|:----:|------|
| Some stuff | 2 | 6 | 10 |
| More stuff | 4 | 8 | 12 |
: This is a caption. {#tbl-example}Inline source blocks (src_LANGUAGE{code}) are exported as inline code with the language prefix:
The mean is src_R{mean(x)}.
exports to:
`r mean(x)`
Feed YAML arguments for computations within source code blocks just as you would in native Quarto:
#+BEGIN_SRC R
#| echo: false
#| fig-cap: My figure's caption.
hist(rnorm(100))
#+END_SRC
I've not yet made an effort to parse output from org-babel computations, which means that code chunk options are the primary means to format figures, tables, and other output. At some point I hope to add parsing of Org captions and labels.
For Quarto markup that is not covered by special blocks, you can pass native Quarto/Pandoc markup directly. In some cases, ox-md will insert escape characters that cause inconsistencies in rendered content. You should consider using a markdown export block when you run into problems.
| Binding | Export |
|---|---|
C-c C-e Q b |
To temporary buffer |
C-c C-e Q f |
To file |
C-c C-e Q o |
To file and open |
C-c C-e Q p |
To file and preview (runs quarto preview) |
C-c C-e Q h |
To HTML and preview (runs quarto preview --to html) |
C-c C-e Q r |
To file and render (runs quarto render) |
M-x org-quarto-convert-region-to-qmd converts a selected region of Org syntax to Quarto Markdown in place. This can be used in any buffer.
Over time I will try to add tests to the repository. Until then, I am doing ad hoc tests on:
- Kubuntu 26.04
- emacs 30.2 (doom 3.0.0-pre)
Please report issues on Windows or Mac, or in other emacs configs.