A pelican plugin for embedding SVG images/icons in HTML. Includes support for FontAwesome <i> tags.
Project description
pelican-embed-svg
Pelican plugin for embedding SVG images/icons at generation time. The plugin currently supports FontAwesome 5 icons specified using <i> tags as well as arbitrary SVG image files.
Copyright (c) 2020 by Kevin Houlihan
License: MIT, see LICENSE for more details.
Installation
The plugin can be installed from PyPI:
pip install pelican-embed-svg
To enable the plugin, add it to the PLUGINS list in your pelicanconf.py
PLUGINS = [
'pelican_embed_svg',
]
If you want to use FontAwesome icons then you will need to download that as well. It is recommended to install that to a directory named font-awesome in the root of your pelican site. However, if you want to use FontAwesome's css (for sizing, etc.), then those files will need to be included in your site's static content, and referenced appropriately in your templates.
Usage
SVG images to embed can be specified in three ways in your templates.
FontAwsome <i> tags
<i> tags with base FontAwesome classes (fas, fab etc.) and an additional class specifying the icon.
<i class="fas fa-heart"></i>
All the classes specified will be copied to the embedded <svg> element in the output.
Custom <i> tags
<i> tags with the class pi, and an additional class specifying the name of the icon.
<i class="pi my-heart"></i>
This will embed the first file named my-heart.svg that is found in your project output, or the svg icon path, if set (see the settings section below).
All the classes specified will be copied to the embedded <svg> element in the output.
<img> tags
<img> tags with src attributes that specify svg files.
<img src="http://localhost:8000/images/my-heart.svg">
The svg file in this case will be found by stripping out the SITEURL. As such, the file must be present in the project output.
Settings
FontAwesome path
By default, FontAwesome icons are looked for in a directory called font-awesome in the root of your pelican project. If you have FontAwesome installed somewhere else then you can specify the path by adding the PES_FONT_AWESOME_PATH setting to your pelicanconf.py.
SVG icon path
When specifying icons using <i> tags and the pi class, by default the output directory is searched for the first svg file that matches. However, it is not strictly necessary for the svg files to be included in the output, so if you have them stored somewhere else the path can be specified using the PES_SVG_ICON_PATH setting.
<img> embedding
If you don't want to process <img> tags then that can be turned off using the PES_EMBED_IMG_TAGS setting:
PES_EMBED_IMG_TAGS = False
Path fills
By default, the embedded svg paths have their fill attribute set to currentColor for <i> tags so that the image colours can be controlled using css color properties. If this is not desirable (such as if your svgs have their own colour information), this can be turned off using the PES_SET_ICON_FILL setting.
For <img> tags, the fill is not modified by default. If you want the fill to be set for these then you can enable it using the PES_SET_IMG_FILL setting.
Caveats
This plugin is at an early stage of development, and largely untested outside of my own personal use-case.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pelican-embed-svg-0.0.3.tar.gz.
File metadata
- Download URL: pelican-embed-svg-0.0.3.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5111afc403c37c72ad45797ab7550f6785e121ad78ba58fe6b574d4ac5035d5
|
|
| MD5 |
b3447cbad6313f2c2488fdad805eaab4
|
|
| BLAKE2b-256 |
d28283d9d13c6abcf9c3c62ff011bfe4908da9b6502f046f46dd2a615bc7e91d
|
File details
Details for the file pelican_embed_svg-0.0.3-py3-none-any.whl.
File metadata
- Download URL: pelican_embed_svg-0.0.3-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74408747f02a9ba50f66b5a57f2670131c4667852c22f76f7ec13730dddc6ac1
|
|
| MD5 |
3595edb967439622dea17504882b1e2a
|
|
| BLAKE2b-256 |
7985ca50e5d7237b65e47ba99af1abd93ca54e04ef14c00df2bb4b91b9c047af
|