Quarto Supports rel=me Out of the Box

Today I Learnt

Quarto
Today I Learnt
Author

errbufferoverfl

Published

December 3, 2024

Modified

June 18, 2025

For a while now, I’ve been wrestling with how to make my social links more functional, specifically for platforms like Mastodon and Bluesky that use rel=me for identity verification. Adding rel=me to links isn’t hard per se, but automating it in a way that fits seamlessly into my site’s build process has been surprisingly tedious.

RIP Me: Quarto Handles This Already

Frustrated, I started looking for a better way to integrate rel=me directly into my site’s build process. My site is built with Quarto, and surely I wasn’t the only one who wanted custom rel attributes for links. After a bit of digging, I stumbled across this closed GitHub issue from 2022. Turns out, Quarto already supports rel=me out of the box for social media links in the about configuration.

All I needed to do was add rel: "me" directly to the links section of my _quarto.yml. Here’s an example:

about:
  template: jolla
  image-width: 80px
  links:
    - icon: chat-square-quote-fill
      text: Bluesky
      href: https://bsky.app/profile/errbufferoverfl.bsky.social
      rel: "me"
    - icon: mastodon
      text: Mastodon
      href: https://genericsocialmediapage.com/@errbufferoverfl
      rel: "me"

While this feature has been in Quarto for over a year, it doesn’t seem to appear in their official docs! By using Quarto’s built-in functionality, I’ve removed the need for custom scripts entirely, which means I’m avoiding potential issues with HTML parsing scripts.