HyunSeob / hexo-theme-overdose

⚠ Caution: you could be overdosed with this theme.
MIT License
135 stars 29 forks source link

str must be a string! #47

Open ahribori opened 7 years ago

ahribori commented 7 years ago

_config.yml 파일에 description 설정을 공란으로 남겨둘 시 다음의 에러가 발생합니다.


Unhandled rejection TypeError:  (생략) themes\overdose\layout\includes\head.pug:9
    7| - pageTitle = pageTitle ? pageTitle += ' | ' + config.title : config.title;
    8| - var banner = bannerOf(page) || theme.default.url;
  > 9| -
    10|   var description = truncate(
    11|     strip_html(page.content) || config.description || theme.profile.description,
    12|     {

str must be a string!
HyunSeob commented 7 years ago

이슈 제보 감사합니다! 빠른 시일 내 픽스할게요 😄

TheBestJohn commented 6 years ago

Was playing around with this theme on my personal blog and it kept failing to generate. The issue looked like the following,

TypeError: /blog/themes/overdose/layout/includes/head.pug:9
    7| - pageTitle = pageTitle ? pageTitle += ' | ' + config.title : config.title;
    8| - var banner = bannerOf(page) || theme.default.url;
  > 9| -
    10|   var description = truncate(
    11|     strip_html(page.content) || config.description || theme.profile.description,
    12|     {

str must be a string!

it looks as if it needs to have the description filled out in the main site config file for it to generate anything at all.

In the meantime, add a description and that should solve your issue

jmpark6846 commented 6 years ago

같은 에러가 있었었는데 감사합니다.

SungmanHan commented 6 years ago

description 을 작성해도 같은 에러가..

TheBestJohn commented 6 years ago

_config.yml 파일에 설명을 설정해야합니다.