hexojs / hexo-renderer-pandoc

A pandoc-markdown-flavor renderer for hexo.
https://npmjs.com/hexo-renderer-pandoc
MIT License
118 stars 33 forks source link

fix 'config undefined' error #17

Closed MegrezZhu closed 6 years ago

MegrezZhu commented 6 years ago

After updating to the latest version of hexo-renderer-pandoc, if I try to generate files using hexo g I encountered the error TypeError: Cannot read property 'template' of undefined (the same as @sli1989's comment here.

It's caused by an missing explicit pandoc configuration like:

pandoc:
  filters:
  extra:
  template:
  meta:
  mathEngine:

So I made the workaround by adding a null-checking before using config.template.

wzpan commented 6 years ago

Merged. Thanks!