Skip to main content

MkDocs plugin for per-node hover tooltip popups, plus pan & zoom, on Mermaid/D2 diagrams and images

Project description

mkdocs-hover-tooltip-popup

An MkDocs plugin that adds per-node hover tooltip popups to Mermaid diagrams, and pan & zoom controls to Mermaid/D2 diagrams and images.

  • Hover tooltips: declare a Markdown-rendered popup for any diagram node; it appears to the side of the node on hover (without covering it) and supports links, bold, font sizes, etc.
  • Pan & zoom: drag to pan, wheel to zoom, with reset / fullscreen / zoom buttons and per-diagram state saved to localStorage.

Live Demo

Published packages https://pypi.org/project/mkdocs-hover-tooltip-popup/

Setup

pip install mkdocs-hover-tooltip-popup

Add it to your mkdocs.yml:

plugins:
  - search
  - hover-tooltip-popup

[!WARNING] Make sure to define the site_url otherwise it won't work!

Example:

site_url: https://elgalu.github.io/mkdocs-hover-tooltip-popup/

If you use the Material for MkDocs theme, one feature is worth avoiding:

[!NOTE] Avoid enabling the Material for MkDocs navigation.instant feature with this plugin. Instant navigation swaps page content without a full reload, which can leave Mermaid diagrams unrendered (and is a known rough edge for client-side Mermaid in general).

Usage

Examples and usage are available in the docs.

Hover Tooltips

Attach a hover popup to any node of a Mermaid diagram with a mermaid-tooltips fenced block placed right after the diagram it annotates. Each entry targets a node by its id or by its visible label text, and text is full Markdown (rendered to HTML at build time).

```mermaid
flowchart LR
    Start --> Build --> Ship
```

```mermaid-tooltips
- node: Start
  text: "The **entry point**. See the [docs](https://example.com)."
- node: Build
  text: "Supports `inline code`, *emphasis*, and <br>line breaks."
- node: Ship
  text: "Publishes the result."
```

Notes:

  • Use the node id (e.g. Start) when it is a plain identifier; use the visible label text for labels containing spaces or punctuation.
  • Tooltips are independent of pan & zoom: they work on any Mermaid diagram, including small ones that don't get pan/zoom controls.
  • v1 supports Mermaid diagrams (D2 and images are planned).

Config

Selectors

Mermaid and D2 are included by default, but you can add any arbitrary selector or exclude the default ones. To enable images add the img tag like below.

plugins:
  - hover-tooltip-popup:
      include_selectors:
        - .myClass # class in html
        - "#myId" # id in html
        - "img" # tag in html
      exclude_selectors:
        - ".mermaid"
        - ".d2"

Hint

This makes the hint on how to use it permanently visible.

plugins:
  - hover-tooltip-popup:
      always_show_hint: true # default false

This changes the location of the hint

plugins:
   - hover-tooltip-popup:
      hint_location: "top" # default bottom

Use different key

Pan & Zoom is enabled by default. Options for the key to disable it (for text selection) are:

  • alt
  • ctrl
  • shift
  • none
plugins:
  - hover-tooltip-popup:
      key: "ctrl" # default alt

Set Initial Zoom Level

This sets the initial zoom level for all diagrams and images.

plugins:
  - hover-tooltip-popup:
      initial_zoom_level: 1.5 # default 1.0
      zoom_step: 0.1 # default 0.2

Exclude Pages

plugins:
  - hover-tooltip-popup:
      exclude:
        - Path/to/page.md

Enable Fullscreen

plugins:
  - hover-tooltip-popup:
      full_screen: True # default False

Hide/Show Zoom in/out Buttons

plugins:
  - hover-tooltip-popup:
      show_zoom_buttons: true # default false
      buttons_size: "1.1em" # default "1.25em"

Automatic Zoom State Persistence

The plugin automatically saves the zoom level and pan position for each diagram to your browser's localStorage. This means:

  • Persistent Settings: Your preferred zoom level and position for each diagram are remembered across page reloads
  • Per-Diagram Memory: Each diagram on a page maintains its own zoom state independently
  • Automatic Cleanup: Saved states older than 30 days are automatically cleared
  • Reset Functionality: Using the reset button clears the saved state for that diagram and returns to the configured initial zoom level

This feature works automatically - no additional configuration is required. The zoom states are stored locally in your browser and are not shared between different browsers or devices.

Styled diagrams (optional)

The plugin ships two optional, opt-in assets for sites that want richly styled Mermaid diagrams (a C4-model look: bold name, italic stereotype, muted detail, with light/dark support). They are not loaded automatically — the plugin stays focused on pan/zoom + tooltips and never touches your Mermaid rendering or theme unless you ask it to. On build they are copied to your site under assets/, so you activate them by listing those paths:

markdown_extensions:
  - pymdownx.superfences:
      custom_fences:
        - name: mermaid
          class: mermaid
          # Raw <div class="mermaid"> (source not HTML-escaped) — the supported fence.
          format: !!python/name:mermaid2.fence_mermaid

extra_css:
  - assets/stylesheets/hover-tooltip-popup-diagram-colors.css   # C4 tier styling + palette

extra_javascript:
  - extra/js/mermaid-11.15.0.min.js                             # your bundled Mermaid runtime
  - assets/javascripts/hover-tooltip-popup-mermaid-init.js      # renders it with HTML labels

Then author node labels with the .c4-name / .c4-type / .c4-detail spans. See the Custom Fonts example for the full recipe.

[!NOTE] Only the mermaid2.fence_mermaid superfence is supported. The HTML-escaping pymdownx.superfences.fence_code_format is not (it would require heavy DOM surgery to render).

Star History

Star History Chart

Credits

This project is a fork of PLAYG0N/mkdocs-panzoom (MIT, Copyright (c) 2024 PLAYG0N). The original pan/zoom plugin is by PLAYG0N; this fork adds per-node hover tooltip popups and is published as mkdocs-hover-tooltip-popup.

The pan/zoom behavior is powered by the bundled panzoom library by Andrei Kashcha (MIT, Copyright (c) 2016-2024 Andrei Kashcha, LICENCE).

The structure and some parts are from the enumerate-headings-plugin (LICENCE)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mkdocs_hover_tooltip_popup-0.2.10.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mkdocs_hover_tooltip_popup-0.2.10-py3-none-any.whl (46.0 kB view details)

Uploaded Python 3

File details

Details for the file mkdocs_hover_tooltip_popup-0.2.10.tar.gz.

File metadata

  • Download URL: mkdocs_hover_tooltip_popup-0.2.10.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for mkdocs_hover_tooltip_popup-0.2.10.tar.gz
Algorithm Hash digest
SHA256 8b9624a6185689ae87051d9c57f2fd900fca14c53231601e007be8a45b65f6d1
MD5 443b98e13ed8ee44be0223301ccc3df5
BLAKE2b-256 461734734ffeb769bef6a55396513faab1e6844646edaca59ef996eef79956f7

See more details on using hashes here.

File details

Details for the file mkdocs_hover_tooltip_popup-0.2.10-py3-none-any.whl.

File metadata

  • Download URL: mkdocs_hover_tooltip_popup-0.2.10-py3-none-any.whl
  • Upload date:
  • Size: 46.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for mkdocs_hover_tooltip_popup-0.2.10-py3-none-any.whl
Algorithm Hash digest
SHA256 7ee8aed9e8ac1935018ba8f80dbbb79a036f7960a897a670da061f1f7c1e795f
MD5 1c62dd7c5b24d5ce82f1057aeaff589b
BLAKE2b-256 9a11f13f6c8b33f427a85775724f35a14f5e2c26d76493c03b251ab096a8cc8c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page