
Product
Introducing Custom Tabs for Org Alerts
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.
helper-process
Advanced tools
{{process}} handlebars helper for processing raw templates in included content, with the correct context.

{{process}} handlebars helper for processing raw templates in included content, with the correct context.
Install the helper with: npm install handlebars-helper-process --save
If you use Assemble and Grunt, you have some simple options for adding helpers.
Add handlebars-helper-process to the helpers property in the Assemble task or target options in your Gruntfile:
grunt.initConfig({
assemble: {
options: {
// You may either register the helper this way.
helpers: ['handlebars-helper-process', 'foo/*.js']
},
files: {}
}
});
Or, add the handlebars-helper-process module to both the devDependencies and the keywords array of your project's the package.json, enabling Assemble will automatically resolve the helper. Example:
{
"name": "your-project",
"dependencies": {
"handlebars-helper-process": "*"
},
"keywords": [
"handlebars-helper-process"
]
}
With that completed, you may now use the {{#process}} helper in your templates:
{{#each pages}}
{{#isnt basename 'index'}}
{{#process}}
{{{page}}}
{{/process}}
{{/isnt}}
{{/each}}
Please report any bugs or feature requests, thanks!
Please see the Contributing to helper-process guide for information on contributing to this project.
Jon Schlinkert
Copyright (c) 2013 Jon Schlinkert Released under the MIT license
This file was generated on Wednesday, November 6, 2013.
FAQs
{{process}} handlebars helper for processing raw templates in included content, with the correct context.
We found that helper-process 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.

Product
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.