
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
This plugin helps you use Tailwind CSS in your Pelican web site.
Because you want use Tailwind CSS in seconds. Not hours.
In order to run this plugin, you need to install Node.JS. (Someday this dependency could be replaced with a Python package.)
This plugin can be installed via:
python -m pip install pelican-tailwindcss
As long as you have not explicitly added a PLUGINS
setting to your Pelican settings file, then the newly-installed plugin should be automatically detected and enabled. Otherwise, you must add tailwindcss
to your existing PLUGINS
list. For more information, please see the How to Use Plugins documentation.
Create a tailwind.config.js
file in your Pelican project root folder containing:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./themes/**/*.html", "./themes/**/*.js"],
theme: {
extend: {},
},
plugins: [],
};
The content
property values are just suggestions. Feel free to modify them according to your needs.
Create a input.css
file in your Pelican project root folder containing:
@tailwind base;
@tailwind components;
@tailwind utilities;
Add the build file (output.css
) in your base.html
.
<link rel="stylesheet" href="/output.css" />
Done! You should be ready to use Tailwind CSS in your website template.
In your settings you can configure the plugin's behavior using the TAILWIND
setting.
An example of a complete TAILWIND
setting:
TAILWIND = {
"version": "3.0.0",
"plugins": [
"@tailwindcss/typography",
"@tailwindcss/forms",
"@tailwindcss/line-clamp",
"@tailwindcss/aspect-ratio",
],
}
As you can see from the example above, it is possible to add the plugins
property to the configuration.
Just add the name of a Tailwind plugin to the list, and the plugin will be installed.
Your tailwind.config.js
file will only be copied when Pelican starts. This means that any changes made after starting Pelican will not be recognized. For example, if you want to install a new plugin for Tailwind, you will have to restart Pelican in order for that plugin to become active.
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.
This project is licensed under the AGPL-3.0 license.
FAQs
Pelican plugin to add Tailwind CSS to your web site
We found that pelican-tailwindcss 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.