diff --git a/README.md b/README.md
index 351555c..e2ccd82 100644
--- a/README.md
+++ b/README.md
@@ -42,12 +42,11 @@ How to Use
`article.share_post`. Keys of the dictionary are as follows,
1. `facebook`
-2. `google-plus`
-3. `email`
-4. `twitter`
-5. `diaspora`
-6. `linkedin`
-7. `hacker-news`
+1. `email`
+1. `twitter`
+1. `diaspora`
+1. `linkedin`
+1. `hacker-news`
Template Example
================
@@ -63,8 +62,6 @@ Template Example
❄
Facebook
❄
- Google+
- ❄
LinkedIn
❄
HackerNews
diff --git a/share_post.py b/share_post.py
index 28d0582..960e4b3 100644
--- a/share_post.py
+++ b/share_post.py
@@ -59,7 +59,6 @@ def share_post(content):
mail_link = 'mailto:?subject=%s&body=%s' % (title, url)
diaspora_link = 'https://sharetodiaspora.github.io/?title=%s&url=%s' % (title, url)
facebook_link = 'https://www.facebook.com/sharer/sharer.php?u=%s' % url
- gplus_link = 'https://plus.google.com/share?url=%s' % url
twitter_link = 'https://twitter.com/intent/tweet?text=%s&url=%s%s%s' % (title, url, via, hastags)
hackernews_link = 'https://news.ycombinator.com/submitlink?t=%s&u=%s' % (title, url)
linkedin_link = 'https://www.linkedin.com/shareArticle?mini=true&url=%s&title=%s&summary=%s&source=%s' % (
@@ -70,7 +69,6 @@ def share_post(content):
'diaspora' : diaspora_link,
'twitter' : twitter_link,
'facebook' : facebook_link,
- 'google-plus': gplus_link,
'linkedin' : linkedin_link,
'hacker-news': hackernews_link,
'email' : mail_link