hexo-theme-overdose icon indicating copy to clipboard operation
hexo-theme-overdose copied to clipboard

str must be a string!

Open ahribori opened this issue 7 years ago • 5 comments

_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!

ahribori avatar Nov 04 '17 13:11 ahribori

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

HyunSeob avatar Nov 05 '17 00:11 HyunSeob

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

TheBestJohn avatar Apr 29 '18 22:04 TheBestJohn

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

jmpark6846 avatar May 17 '18 13:05 jmpark6846

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

SungmanHan avatar Jul 04 '18 15:07 SungmanHan

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

TheBestJohn avatar Jul 17 '18 16:07 TheBestJohn