Release Builds
Install a release build of Quarto.
Highlights
Quarto 1.5 includes the following new features:
Typst CSS—Format tables with borders and colors, and the formatting will be transferred from HTML to Typst.
Typst 0.11.0—Typst tables have feature parity with other formats, with colspans, rowspans, and alignment of individual cells.
Website Draft Mode—Improved support for workflows involving draft posts and pages:
Adds the
drafts
option to thewebsite
key offering new ways to specify drafts: directly in_quarto.yml
, and via metadata includes and profiles.Introduces the
draft-mode
option to thewebsite
key to control how drafts are rendered. Drafts can begone
,unlinked
orvisible
.Adds a draft banner to draft pages that are rendered.
Improves the linking behaviour of draft documents. Now, in addition to being excluded from search results, listings, and the sitemap, drafts will not appear in navigation, or be linked from in-text hyperlinks when
draft-mode
isgone
orunlinked
.Changes the behavior of
quarto preview
for drafts. Drafts will bevisible
in previews regardless of thedraft-mode
setting. In particular, this allows an easier way to preview the appearance of draft content in navigation and listings.
Website Announcement Bar—Add an announcement bar to your website.
Placeholder Image Shortcodes—Easily add placeholder images to your documents (
{{< placeholder >}}
).Lorem Ipsum Text Shortcodes—Easily add lorem ipsum text to your documents (
{{< lipsum >}}
).Native Julia Engine—Execute Julia code in Quarto documents without requiring Jupyter.
Project Pre Render Scripts—Project metadata and the render list are now re-computed after any pre-render scripts have executed.
Element-wide disabling of HTML table processing—Declare the comment
<!--| quarto-html-table-processing: none -->
anywhere in an HTML RawBlock.Shortcode context awareness—Shortcode handlers can be made aware of their invocation in
block
,inline
ortext
contexts.