Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
mkdocs-backlinks-section-plugin
Advanced tools
Adds a backlinks section that lists every page linking to the current page.
Adds a backlinks section that lists every page linking to the current page.
You can install it with pip
:
pip install mkdocs-backlinks-section-plugin
Add the plugin to your mkdocs.yml
:
plugins:
- search
- backlinks_section
You can customize the text inserted by the plugin with the configuration values below:
Option | Type | Default value |
---|---|---|
title | string | Backlinks |
description | string | The following pages link to this page: |
description_no_links | string | No other pages link to this page. |
So for example if you would want the text to be in German, you could do this in your mkdocs.yml
:
plugins:
- search
- backlinks_section:
title: Rückverweise
description: "Die folgenden Seiten referenzieren die aktuelle Seite:"
description_no_links: Es gibt keine Verweise auf diese Seite.
You can ignore source and destination pages for the backlink section. The values are interpreted as glob-like patterns, wich are matched against the paths of the Markdown source files.
Option | Type | Default value |
---|---|---|
ignore_links_from | list of strings | [] |
ignore_links_to | list of strings | [] |
For example you may have a page listing all tags (and thus linking to almost all pages) and want to prevent every page having a backlink to it:
plugins:
- search
- backlinks_section:
ignore_links_from:
- path/with/globs/**/to/tags.md
If you do not want a backlinks section on some pages, you can disable it with the ignore_links_to
option:
plugins:
- search
- backlinks_section:
ignore_links_to:
- path/with/globs/**/to/files-without-backlink-section-*.md
- index.md
ignore_links_from
and ignore_links_to
configuration optionsFAQs
Adds a backlinks section that lists every page linking to the current page.
We found that mkdocs-backlinks-section-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.