Download Latest Version v1.12.0 source code.tar.gz (1.8 MB)
Email in envelope

Get an email when there's a new version of Quarkdown

Home / v1.10.0
Name Modified Size InfoDownloads / Week
Parent folder
quarkdown.zip 2025-09-30 28.0 MB
README.md 2025-09-29 5.1 kB
v1.10.0 source code.tar.gz 2025-09-29 1.7 MB
v1.10.0 source code.zip 2025-09-29 2.2 MB
Totals: 4 Items   32.0 MB 1

[!TIP] The new quickstart guide for beginners is available! Check it out in the wiki: Quickstart

Main features and changes

This version brings enhancements in the area of element numbering.

Cross-references

It's now possible to reference sections, figures, tables, equations, code blocks and custom elements across the document.

:::markdown
The Quarkdown logo is shown in .ref {logo}.

![Logo](icon.svg "The Quarkdown icon") {#logo}

Figure cross-reference

 

Code block numbering and captions

Code blocks can now be numbered and captioned.

.numbering
    - code: 1.1

:::python "Fibonacci function"

def fibonacci(n): if n <= 1: return n return fibonacci(n - 1) + fibonacci(n - 2)

Numbered caption

 

Numbered equations

Math blocks with a cross-reference ID are now numbered.
If you want to number an equation without referencing it, you can conventionally use _ as the ID.

:::markdown
.numbering
    - equations: (1)

$ f(x) = x^3 $ {#cubic}

$$$ {#_}
f(x) = \begin{cases} 
  x^2, & \text{if } x \ge 0 \\
  -x, & \text{if } x < 0
\end{cases}
$$$

.ref {cubic} is a cubic function.

Equation numbering

 

Changed .numbering default behavior [Breaking change]

The .numbering function now merges the new configuration by default.

Consider the following:

.doctype {paged}

.numbering
    - figures: a

# Title

![](img.png "Caption")

The paged document type comes with its own default numbering for most element types.

Prior to this update, setting a new numbering format (e.g. figures: a) would completely reset the current numbering, leaving headings, tables and other elements unnumbered.

Starting with this update, the current and new configurations are merged, resulting in a for figures, and the original defaults for the rest.

To stick with the original behavior, set merge:{no}.

 

Tables are now always numbered [Breaking change]

In earlier versions, a table is numbered only if it contains a caption, even if empty, as long as an active table numbering format is applied.

From now on, a caption is no longer required: having a table numbering format will be enough to number all tables in the document.

 

Fixed missing trailing symbols in numbering formats

Fixed an issue in .numbering formats that would cause trailing non-counting symbols to be cut off.
For instance, the format (1.1) would wrongly output (1.1.

 

Fixed wrong inline math tokenization

Fixed an issue that would cause multiple inline math expressions on the same line to be wrongly tokenized as a single math block, if the line started with an inline math expression and ended with another one.

 

Added French localization

French is now supported. Thanks @Pallandos!

 

Changelog

New Contributors

Full Changelog: https://github.com/iamgio/quarkdown/compare/v1.9.2...v1.10.0

Sponsors

Shout out to our new sponsor: @RayOffiah 🎉

Falconer

Source: README.md, updated 2025-09-29