-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Missing helper: "md"" after update to v0.6.0 #59
Comments
@rejas Thanks for the issue! If you're reporting a bug, please be sure to include:
|
My grunt-task
|
Hi @rejas I anticipated there being issues and this is one of them. Check out the migration section in the readme that addresses missing "md" and "markdown" helpers. There's a code snippet that you can put in assemble: {
pages: {
options: {
flatten: true,
layout: '<%= dir.assemble %>/layouts/default.hbs',
data: '<%= dir.assemble %>/data/*.{json,yml}',
partials: '<%= dir.assemble %>/partials/*.hbs',
helpers: '<%= dir.assemble %>/helpers/*.js'
},
files: {
'<%= dir.tmp %>/': ['<%= dir.assemble %>/pages/*.hbs']
}
}
}, |
Thx, that worked flawlessly. Sorry for not looking at the migration guide first :-( |
No problem. If you run into any other issues with migrating, please open an issue so we can fix it, find a workaround, or update the migration section. |
Used the latest version of assemble and grunt-assemble for my private prohject, but after updating grunt-assemble from v0.5.0 to v0.6.0 I get this error when running it:
Running "assemble:pages" (assemble) task
Assembling tmp/travel_01_aus.html OK
Assembling tmp/blog.html ERROR
Warning: Missing helper: "md" Use --force to continue.
Aborted due to warnings.
What has changed that needs to be accomodated on my side for my project to run again?
Using node v7.7.2, assemble 0.23.0
The text was updated successfully, but these errors were encountered: