Socket
Socket
Sign inDemoInstall

mkdocs-preview-links-plugin

Package Overview
Dependencies
8
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mkdocs-preview-links-plugin

An MkDocs plugin that adds tooltips to preview the content of page links using tooltipster.


Maintainers
1

Readme

Fork of midnightprioriem/mkdocs-tooltipster-links-plugin

An MkDocs plugin that adds tooltips to preview the content of page links using tooltipster

demo

Setup

Install the Plugin

Install the plugin using pip:

pip install mkdocs-preview-links-plugin

Activate the plugin in mkdocs.yml:

plugins:
  - search
  - tooltipster-links

Note: If you have no plugins entry in your config file yet, you'll likely also want to add the search plugin. MkDocs enables it by default if there is no plugins entry set, but now you have to enable it explicitly.

More information about plugins in the MkDocs documentation.

Install Tooltipster

Please reference Tooltipster's getting started guide for additional installation instructions.

Download Tooltipster and add the css and javascript to mkdocs.yml:

extra_css:
  - css/tooltipster.bundle.min.css

extra_javascript:
  - js/tooltipster.bundle.js  

Create custom directory and main.html file for overriding the extra_head template block

mkdir theme
touch theme/main.html

Add the following to main.html:

{% extends "base.html" %}

{% block extrahead %}
        <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
        <script>
                $(document).ready(function() {
                    $('.link-tooltip').tooltipster();
                });
        </script>
{% endblock %}

Add the custom directory to mkdocs.yml:

theme:
  name: mkdocs
  custom_dir: theme

Add additonal css to the site (either in a new css file or existing one):

.tooltipster-base {
    max-width: 50%;
}
.tooltipster-content img.wikilink {
    max-width: 10%;
}
.tooltip_templates {
    display: none;
}

Usage

Once configured property, tooltips-links should create tooltips automagically!

The plugin is not compatible with navigation.instant in Material Theme. For this theme, some styling are disponible in the docs/material.css file.

Custom configuration

In you config file to add compatibility for these plugins :

Just edit your config file and add the following:

plugins:
  - search
  - tooltipster-links:
      callouts: true
      custom-attributes: 'assets/css/custom_attributes.css'

Moreover, you can configure the max characters limits and the characters used after truncate (400 used by default):

plugins:
  - search
  - tooltipster-links:
      max-characters: 400 #use 0 or 1 for no limit
      truncate-characters: '...'

See Also

More information about templates here.

More information about blocks here.

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc