Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
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 |
ulClass | Class name of ul | 'related-posts' |
liClass | Class name of li | 'related-posts-item' |
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
A hexo plugin that generates a list of links to related posts based on tags.
The npm package hexo-list-related-posts receives a total of 15 weekly downloads. As such, hexo-list-related-posts popularity was classified as not popular.
We found that hexo-list-related-posts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.