MkDocs Link Marker

0.3.0 · active · verified Sat Apr 11

mkdocs-link-marker is an MkDocs plugin designed to automatically mark external or mailto links within your documentation, enhancing user experience by visually distinguishing these links. It is currently at version 0.3.0 and maintains an active development cycle with regular updates addressing features and fixes.

Warnings

Install

Imports

Quickstart

To enable the mkdocs-link-marker plugin, add `link-marker` to the `plugins` section of your `mkdocs.yml` file. You can also configure various options such as custom icons for external and mail links, a list of URLs to ignore, and extra HTML attributes for external links.

site_name: My Docs

plugins:
  - search
  - link-marker: # Enable the link-marker plugin
      # Optional configuration:
      # external_icon: ' 🔗'
      # mail_icon: ' ✉️'
      # ignore_urls: ['www.example.com']
      # extra_external_attrs: {'target': '_blank', 'rel': 'noopener'}

view raw JSON →