Frequently Asked Questions

Published

July 6, 2025

Modified

July 6, 2025

General Information

What is the {linkate} extension for Quarto?

The {linkate} extension for Quarto is a filter that automatically collects all URLs in your document and places a copy of them at the end under a “Links” section. It helps readers easily find and reference all links mentioned throughout your document, improving accessibility and providing a convenient link directory.

Installation

How do I install the {linkate} extension?

See the home page for details.

Is the {linkate} extension compatible with all Quarto versions?

The {linkate} extension requires Quarto v1.7 or later, as it uses Lua filters which were stabilized in that version.

Do I need to install any additional dependencies?

No additional dependencies are required. The {linkate} extension is a pure Lua filter that works with Quarto’s built-in Pandoc processing.

Usage and Customization

How do I enable the {linkate} extension in my document?

After installing the extension, add it to your document’s YAML front matter:

---
title: "My Document"
filters:
  - linkate
---

The extension will automatically collect all links and add them to the end of your document.

Does {linkate} work with all Quarto output formats?

Yes! Since {linkate} operates at the Pandoc AST level before format-specific rendering, it works with all Quarto output formats including HTML, PDF, Word, EPUB, and more.

Behavior and Features

Can I use {linkate} with other Quarto extensions?

Yes, {linkate} is designed to work alongside other Quarto extensions. If you encounter conflicts, try adjusting the order of filters in your YAML front matter.

Troubleshooting

Support

How can I contribute to the {linkate} extension?

For bug reports, feature requests, or contributions, please visit the project’s repository or contact the maintainers through the official channels outlined in the documentation.