Changelog
Version 0.4.0 (2026-06-11)
Breaking Changes
ExternalDocsRegistrynow stores inventories alongside base URLs (its field layout changed). Code constructing it via the zero-argument constructor is unaffected.- New dependencies: CodecZlib (zlib for
objects.inv) and Downloads.
Bug Fixes
- Fixed a crash in
quarto_doc_short(and therefore inquarto_build_sitewith the default ungrouped reference page) for docstrings that start with a paragraph instead of a signature code block. - Docstring rendering is now structure-agnostic: it walks the Markdown AST generically instead of assuming a fixed shape, so any well-formed docstring renders without errors.
- Admonitions now map to the correct Quarto callout types (
!!! note→callout-note,!!! tip→callout-tip,!!! danger→callout-important, …) instead of always rendering as warnings. - All docstring headers are demoted consistently (H1→H3, H2→H4, …), so headings inside docstrings no longer pollute the page table of contents.
resolve_external_ref/autolink_externalno longer fabricate/lib/types/#URLs that 404 on most sites.- Fixed multi-version deployment end to end. The workflow from
quarto_github_action_versionedpreviously generated invalid YAML, published/stable/as a symlink (which GitHub Pages does not serve, yielding a 404), and the version-selector dropdown assumed the docs were hosted at a domain root. Nowstableis a real published copy of the latest release, the version selector locatesversions.jsonand switches versions correctly under project-page subpaths (e.g.user.github.io/Repo.jl/), and the site root redirects todev/until the first release exists.
New Features
- Automatic cross-reference autolinking: backticked mentions like
`my_function`in docstrings now become links to the corresponding reference pages duringquarto_build_site. Controlled by the newQuartoConfigfieldautolink(defaulttrue). Links inside code blocks and existing links are never touched. - Strict mode: new
QuartoConfigfieldstrict(defaultfalse). After building, all internal links are validated; withstrict = truethe build fails listing every broken link (like Documenter.jl), otherwise a warning is emitted. - Inventory-based external cross-references: external package links are now resolved through Sphinx
objects.invinventories (the format Documenter.jl publishes) instead of guessed URLs.register_external_docsloads inventories automatically; unresolvable references are left unlinked instead of producing broken URLs. objects.invemission: every built site now ships its ownobjects.inv(viagenerate_inventory/write_inventory), so other packages can reliably cross-link to your documentation.- Submodule documentation: new
QuartoConfigfieldinclude_submodules(defaultfalse) documents bindings from nested submodules, with collision-safe page names (Inner.foo.qmdwhenfooexists in two modules). A warning now tells you when documented submodules are being skipped. - New exports:
Inventory,InventoryItem,load_inventory,write_inventory,generate_inventory,resolve_inventory,reference_page_names.
NoteVersion 0.2.0 (2026-01-25)
Breaking Changes
- Removed deprecated kwarg-based API functions (
quarto_yaml,quarto_build_site(module; kwargs...)) - Removed broken article functions that referenced non-existent
config.articlesfield:
Bug Fixes
- Fixed code block formatting in docstrings showing raw
{julia}markers (#fix) - Fixed browser tab title showing “index” instead of package name on home page
Improvements
quarto_index()now adds proper YAML front matter with the package name as title- Cleaner config-based API is now the only supported approach
- Updated module docstring with config-based examples
New Features
- Optional default styles: Default QuartoDocBuilder CSS is now only applied when no bootswatch theme is specified
- New
use_default_stylesfield inThemeConfigfor explicit control over default CSS - Default styles are bundled in
src/default_styles.cssand automatically applied when:
NoteVersion 0.1.0 (2026-01-24)
Dependencies
- Only uses Julia stdlib packages (Markdown, TOML)
- No external dependencies required
- Minimum Julia version: 1.6
Features
- Initial release with pkgdown-like functionality for Julia packages
- Configuration system with type-safe
QuartoConfigstruct - Reference page grouping with pkgdown-style selectors (
starts_with,ends_with,matches,contains) - Articles/vignettes system with auto-discovery and navbar dropdowns
- NEWS.md parsing and changelog page generation with GitHub issue linking
- Light/dark mode toggle with automatic theme pairing (flatly/darkly, cosmo/cyborg, etc.)
- Auto-linking of function references in documentation
- GitHub Actions workflow generation for automated deployment
- Giscus comments integration for reader feedback
- Custom theming support (colors, fonts, CSS/SCSS)
- TOML configuration file support (
_quartodoc.toml)