Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
wintersmith-tag
Advanced tools
This is a plugin for Wintersmith. It allows you to add tags to articles and list articles by tags.
For a complete example, please take a look at thecoolwei.com and its source.
Install globally or locally using npm
npm install [-g] wintersmith-tag
and add wintersmith-tag
to your project's config.json
{
"plugins": [
"wintersmith-tag"
]
}
You can specify options in config.json
{
"tag": {
"template": "tag-index.jade",
"perPage": 4
}
}
This plugin is based on the built-in paginator plugin, so it uses the paginator's options by default. The only exception is it has its own default for filename
. This is can be best understood by looking at the source code
paginatorDefaults =
template: 'index.jade' # template that renders pages
articles: 'articles' # directory containing contents to paginate
first: 'index.html' # filename/url for first page
filename: 'page/%d/index.html' # filename for rest of pages
perPage: 2 # number of articles per page
tagDefaults =
filename: 'tag/%s/%d/index.html' # => tag/:tagName/:pageNum/index.html
options = _.extend {}, paginatorDefaults, env.config.paginator, tagDefaults, env.config.tag
Just add tags
to the metadata section of the article. Seperate multple tags by comma. Tag name can contain space.
---
title: Hello world
date: 2012-10-14 8:31
template: article.jade
tags: Algorithm, a happy story
---
Several new context variables and helper funtions are available in the template now.
The tagName
variable contains the tag name that articles are filtered by.
This function returns all tags in the project. It can be used to create a tag cloud on your frontpage, for example.
Returns all articles that has tag tagName
Returns a page
object that reperents the first page of the article list filtered by tagName
. You can create a link to this page in template like
a(href=env.helpers.getTagHome(tagName).url)= tagName
Returns an array of tags of current article.
- var tags = env.helpers.getTagsFromArticle(page)
each tag in tags
a.big-tag(href=env.helpers.getTagHome(tag).url)= tag
wintersmith build -v
Lists of articles filtered by tags have been created successfully!
/tag/algorithm/1/index.html
/tag/algorithm/2/index.html
...
FAQs
A wintersmith plugin to create tags.
We found that wintersmith-tag 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.