Pelican AI FAQ

Answers to your most common questions about Pelican AI.

Quick, simple, and helpful information at a glance.

What is Pelican?
Pelican is a static site generator that allows you to easily create and publish websites from simple text files.
How do I install Pelican?
Pelican can be installed using the command "pip install pelican" in your terminal or command prompt.
What operating systems does Pelican support?
Pelican is compatible with most operating systems, including Windows, Linux, and MacOS.
What programming languages are needed to use Pelican?
Pelican is built in Python, but basic knowledge of HTML and CSS is recommended for creating custom templates.
How do I create a new Pelican site?
To create a new Pelican site, run the command "pelican-quickstart" in your terminal and follow the prompts.
What are the main files used in a Pelican site?
The main files used in a Pelican site include the configuration file, content files, template files, and output files.
How do I add content to my Pelican site?
Content can be added to your Pelican site by creating new Markdown files in the "content" folder or by editing existing files.
Can I use images in my Pelican site?
Yes, you can add images to your Pelican site by including them in your content files using Markdown syntax.
How do I customize my Pelican site's appearance?
You can customize your Pelican site's appearance by editing the templates and corresponding CSS files in the "theme" folder.
How do I publish my Pelican site?
To publish your Pelican site, you need to generate the HTML files using the command "make html" and then upload the output files to a web server.
Can I use plugins with Pelican?
Yes, Pelican has a plugin system that allows you to extend its functionality. You can find a list of available plugins on the official Pelican website.
How do I install Pelican plugins?
You can install Pelican plugins by using the command "pip install " in your terminal or by adding the plugin to your pelicanconf.py file.
What should I do if I encounter an error while using Pelican?
If you encounter an error while using Pelican, you can try restarting the console or terminal and check the Pelican documentation or forums for assistance.
Why am I unable to view my website after publishing it with Pelican?
This could be due to incorrect file paths or missing files in your output folder. Check your pelicanconf.py file and make sure all necessary files have been generated.
How can I troubleshoot issues with my Pelican site's design or layout?
To troubleshoot design or layout issues, you can use your browser's developer tools or review the template and CSS files in the "theme" folder.
How do I update my Pelican site's theme?
To update your Pelican site's theme, you can either find and install a new theme or make changes to the existing theme's template and CSS files.
Can I use a custom domain for my Pelican site?
Yes, you can use a custom domain for your Pelican site by configuring your domain's DNS settings and adding it to your Pelican site's deployment settings.
How do I set up comments on my Pelican site?
You can set up comments on your Pelican site by using a commenting service like Disqus and adding the necessary code to your Pelican templates.
Can I password protect certain pages on my Pelican site?
Yes, you can password protect pages on your Pelican site by setting a password in the page metadata or by using a plugin.
How do I add a contact form to my Pelican site?
You can add a contact form to your Pelican site by using a form builder service like JotForm and embedding the code into your Pelican templates.
What should I do if the Pelican commands are not recognized in my terminal?
Double-check that Pelican is installed correctly and that your terminal is pointing to the correct directory where your Pelican site is located.
Why am I getting a "MemoryError" when generating my Pelican site?
This error may occur due to a lack of available memory. You can try reducing the number of articles being generated at once or increasing your system's memory.
Can I view my Pelican site locally before publishing it?
Yes, you can use the command "make serve" to run a local server and view your Pelican site before publishing it.
How do I change the default URL structure for my Pelican site?
To change the default URL structure, you can set the "ARTICLE_URL" and "ARTICLE_SAVE_AS" variables in your pelicanconf.py file. You can also use a plugin for more flexibility.
How do I create links between pages on my Pelican site?
Links between pages can be created using relative links in your content files or by using the "url" function in your templates.
Can I schedule posts to be published on a future date with Pelican?
Yes, you can use the "Date" metadata in your content files to schedule posts for future publication.
How do I delete a Pelican site?
To delete a Pelican site, simply delete the folder where your site's files are located.
Where can I find help for Pelican?
You can find help for Pelican by visiting the official Pelican website, reading the documentation, or joining the Pelican community forum.