
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
hexo-list-related-posts
Advanced tools
A hexo plugin that generates a list of links to related posts based on tags.
A hexo plugin that generates a list of links to related posts based on tags.
List is ordered by the number of matched tags.
$ npm install hexo-list-related-posts --save
Add <%- list_related_posts([options]) %>
in template file for article.
option | description | default |
---|---|---|
maxCount | Maximum count of a list | 5 |
pClass | Class name of p when there is no related post | 'related-posts-none' |
ulClass | Class name of ul | 'related-posts' |
liClass | Class name of li | 'related-posts-item' |
aClass | Class name of a | 'related-posts-link' |
generateAbstract | Generate abstract or not | false |
abstractClass | Class name of abstract of content | 'related-posts-item-abstract' |
abstractLength | Length of abstract | 110 |
orderBy | 'date' or 'random' When the number of matched tags is the same, list is ordered by date or random. | 'date' |
isAscending | Ascending or descending when list is ordered by date. | false |
<%- list_related_posts({maxCount: 10, orderBy: 'random'}) %>
To generate abstract of content
<%- list_related_posts({maxCount: 10, orderBy: 'random', generateAbstract: true}) %>
.related-posts-item-abstract {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; /* ends with '...' of abstract */
}
FAQs
Did you know?
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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.