diff --git a/README.md b/README.md index 8e26419..a1289af 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,6 @@ article.share_post = { "mastodon": "", "reddit": "", "twitter": "", - "bluesky": "", } ``` @@ -62,8 +61,6 @@ You can then access those variables in your template. For example: RedditTwitter - ❄ - Bluesky

{% endif %} diff --git a/pelican/plugins/share_post/share_post.py b/pelican/plugins/share_post/share_post.py index 6172904..2cbd815 100644 --- a/pelican/plugins/share_post/share_post.py +++ b/pelican/plugins/share_post/share_post.py @@ -13,9 +13,9 @@ This plugin adds social share URLs to each article. from urllib.parse import quote from bs4 import BeautifulSoup +from pelican.generators import ArticlesGenerator, PagesGenerator from pelican import contents, signals -from pelican.generators import ArticlesGenerator, PagesGenerator _create_link_functions = []