hexo generate error: SyntaxError: Invalid or unexpected token

最近发现一个问题,一些特殊的字符,肉眼不可见的字符,引起了hexo报错。

error messages:

hexo generate
INFO Start processing
FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/docs/troubleshooting.html
Template render error: SyntaxError: Invalid or unexpected token


I found some Invalid token(char) can makes this error: Template render error: SyntaxError: Invalid or unexpected token
unicode Decimal Code8232  (这个引起hexo异常字符的 unicode 十进制码,他是一个人眼不可见的字符。)
Symbol Name: Line Separator (他是换行分隔符)
Hex Code: 

Decimal Code: 


this char in VS Code it's looks like:


how to resolve? 如何解决

find the char(Invalid or unexpected token), then delete the char.
you can create a program, to replace the invalid char.

找到这个字符,删除这个字符,hexo 就能正常工作了。
你可以写个程序,替换这些异常字符,替换为空、或空格随你选择。