🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

hexo-list-related-posts

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hexo-list-related-posts

A hexo plugin that generates a list of links to related posts based on tags.

0.3.0
latest
Source
npm
Version published
Weekly downloads
2
-87.5%
Maintainers
1
Weekly downloads
 
Created
Source

A hexo plugin that generates a list of links to related posts based on tags.

List is ordered by the number of matched tags.

Install

$ npm install hexo-list-related-posts --save

Usage

Add <%- list_related_posts([options]) %> in template file for article.

Options

optiondescriptiondefault
maxCountMaximum count of a list5
pClassClass name of p when there is no related post'related-posts-none'
ulClassClass name of ul'related-posts'
liClassClass name of li'related-posts-item'
aClassClass name of a'related-posts-link'
generateAbstractGenerate abstract or notfalse
abstractClassClass name of abstract of content'related-posts-item-abstract'
abstractLengthLength of abstract110
orderBy'date' or 'random'
When the number of matched tags is the same, list is ordered by date or random.
'date'
isAscendingAscending or descending when list is ordered by date.false

Examples

<%- list_related_posts({maxCount: 10, orderBy: 'random'}) %>

To generate abstract of content

<%- list_related_posts({maxCount: 10, orderBy: 'random', generateAbstract: true}) %>

Abstract of content CSS

.related-posts-item-abstract {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;  /* ends with '...' of abstract */
}

Keywords

hexo

FAQs

Package last updated on 23 Jun 2017

Did you know?

Socket

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.

Install

Related posts