Skip to main content

Pelican plugin to set anchor tag's class attribute to differentiate between internal and external links

Project description

Link Class: A Plugin for Pelican

Build Status PyPI Version License

This Pelican plugin allows you to set the class attribute of <a> elements (generated in Markdown by [ext](link)) according to whether the link is external (i.e., starts with http:// or https://) or internal to the Pelican-generated site.

For now, this plugin only works with Markdown. It has been tested with version 3.0+ of the Python-Markdown module and may not work with previous versions.

Installation

This plugin is available as a package at PyPI and can be installed via:

python -m pip install pelican-linkclass

Configuration

In order to avoid clashes with already-defined classes in the user CSS style sheets, it is possible to specify the name of the classes that will be used. They can be specified in the Pelican setting file with the LINKCLASS variable, which must be defined as a list of tuples, like this:

'LINKCLASS' = (('EXTERNAL_CLASS', 'name-of-the-class-for-external-links'),
               ('INTERNAL_CLASS', 'name-of-the-class-for-internal-links'))

The default values for EXTERNAL_CLASS and INTERNAL_CLASS are, respectively, 'external' and 'internal'.

Styling Hyperlinks

One of the possible uses of this plugins is for styling. Suppose that we have the following Markdown content in your article:

This is an [internal](internal) link and this is an
[external](http://external.com) link.

If the default configuration variable values are used, then one possible CSS setting could be:

a.external:before {
    content: url('../images/external-link.png');
    margin-right: 0.2em;
}

(The file external-link.png is also distributed with this plugin. To use it, copy it to the appropriate place in your web site source tree, for instance in theme/static/images/.)

Then, the result will look like the following:

figure

Note that this plugin also works with reference-style links, as in the following example:

This is an [internal][internal] link and this is an
[external][external] link.

 [internal]: internal
 [external]: http://external.com

Contributing

Contributions are welcome and much appreciated. Every little bit helps. You can contribute by improving the documentation, adding missing features, and fixing bugs. You can also help out by reviewing and commenting on existing issues.

To start contributing to this plugin, review the Contributing to Pelican documentation, beginning with the Contributing Code section.

Acknowledgments

Many thanks to Yuliya Bagriy for setting up the package for PyPI, to Lucas Cimon for fixing the issues with pytest, and to Justin Mayer for helping with migration of this plugin under the Pelican Plugins organization.

Author

Copyright © 2015, 2017, 2019, 2021-2023 Rafael Laboissière (rafael@laboissiere.net)

License

This project is released under the terms of the GNU Affero Public License, version 3 or later.

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

pelican_linkclass-2.1.4.tar.gz (21.9 kB view details)

Uploaded Source

Built Distribution

pelican_linkclass-2.1.4-py3-none-any.whl (19.9 kB view details)

Uploaded Python 3

File details

Details for the file pelican_linkclass-2.1.4.tar.gz.

File metadata

  • Download URL: pelican_linkclass-2.1.4.tar.gz
  • Upload date:
  • Size: 21.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pelican_linkclass-2.1.4.tar.gz
Algorithm Hash digest
SHA256 e5952c29fef562244c42018ce8b84217382d5b344c59230f4b8115af7731b66f
MD5 6b4abb3dde8509418ff4b6ba930495b6
BLAKE2b-256 1b2b03424d7ea46fb93f5d78745a4dc33154255fd6d7eb52fbc0d0d1396d0721

See more details on using hashes here.

File details

Details for the file pelican_linkclass-2.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for pelican_linkclass-2.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e8e394a4459c0c6d53629ea8f8f274a9b4f3c759ba52e0a244bab3d5c015561c
MD5 0eec793e1b73be98392a938cb8274223
BLAKE2b-256 579bfd53a33f8249f60722a6602be93ee5fab015c7fc082be58916eb2e3b9a1f

See more details on using hashes here.

Supported by

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