sunng87 / handlebars-iron

Handlebars middleware for Iron web framework
MIT License
119 stars 20 forks source link

make template names use forward slashes even on windows #42

Closed cmsd2 closed 8 years ago

cmsd2 commented 8 years ago

this should help users of handlebars-iron write code that works on both win and unix. file paths are as before. template names now universally use unix style path notation so the file "./template/controller/index.html.hbs" is now named "controller/index.html" on both platforms, instead of r#"controller\index.html"# on windows.

sunng87 commented 8 years ago

Thanks for this patch!