Linkate Extension Demo
This document demonstrates the linkate
filter extension, which automatically collects all URLs in your Quarto document and places them at the end under a “Links” section.
Document YAML
The following YAML front matter is used to enable the linkate extension in this document:
---
title: "Linkate Extension Demo"
format: html
filters:
- linkate
---
Sample Content with Links
The following examples demonstrate different types of links that will be automatically collected by the linkate extension.
Basic Links
Check out the official Quarto website at https://quarto.org for comprehensive documentation.
You can also visit the Quarto GitHub repository to see the source code.
For R users, we recommend browsing CRAN for packages.
<https://quarto.org> for comprehensive documentation.
Check out the official Quarto website at
[Quarto GitHub repository](https://github.com/quarto-dev/quarto-cli) to see the source code.
You can also visit the
[CRAN](https://cran.r-project.org/) for packages. For R users, we recommend browsing
Reference-Style Links
For statistical computing, check out R Project and Python.
You might also be interested in JS data visualization tools.
[R Project][r-project] and [Python][python-site].
For statistical computing, check out
[JS data visualization tools][dataviz].
You might also be interested in
[r-project]: https://www.r-project.org/
[python-site]: https://www.python.org/
[dataviz]: https://observablehq.com/
Mixed Link Types
This paragraph contains multiple link types: an autolink to https://example.com, an inline link to Stack Overflow, and a reference link to MDN Web Docs.
We also include a duplicate link to Quarto to demonstrate deduplication.
This paragraph contains multiple link types: an autolink to <https://example.com>, an inline link to [Stack Overflow](https://stackoverflow.com), and a reference link to [MDN Web Docs][mdn].
[Quarto](https://quarto.org) to demonstrate deduplication.
We also include a duplicate link to
[mdn]: https://developer.mozilla.org/
When you render this document, you’ll see a “Links” section automatically generated at the bottom containing all the URLs referenced above.