No Description

Jorge Maldonado Ventura ac2cf12bf8 Go to the text just after the read more link when you click on the link 6 years ago
.gitignore d1f72fd60c Initial commit 7 years ago
LICENSE d1f72fd60c Initial commit 7 years ago
Readme.md ac2cf12bf8 Go to the text just after the read more link when you click on the link 6 years ago
__init__.py 107523cd60 Init 7 years ago
another_read_more_link.py ac2cf12bf8 Go to the text just after the read more link when you click on the link 6 years ago

Readme.md

##Pelican-plugins: Another Read More Link

" Inserting a <!-- more --> comment into your post will prevent the post content below this mark from being displayed on the index page for the blog posts, a "Continue →" button links to the full post. "

demo: fangpeishi.com

.another-read-more-link {
    background: #eee;
    display: inline-block;
    padding: .4em .4em;
    margin-right: .5em;
    text-decoration: none;
    color: #737373;
    transition: background-color 0.5s;
}

demo

###Settings


ANOTHER_READ_MORE_LINK = "Read more"
ANOTHER_READ_MORE_LINK_FORMAT = "<a class="another-read-more-link" href="{url}" >{text}</a>"
READ_MORE_ID = 'read_more_link'