fi3ework / hexo-theme-archer

🎯 A smart and modern theme for Hexo.
https://fi3ework.github.io/hexo-theme-archer
MIT License
1.52k stars 273 forks source link

Fix author with special chars #103

Closed pfrankw closed 6 years ago

pfrankw commented 6 years ago

In my surname there is the apostrophe character [ -> ' <- ] and the theme was misbehaving (and there were errors in the console). By escaping the variable the problem goes away.

Maybe it could be better to use quotes to enclose this variable, but at the moment I am not able to test it. This pull request is mostly to report the issue.

fi3ework commented 6 years ago

@pfrankw Sorry for be late reply. As you pointed out, there will be error in console with ' char in author because the string was surroundded by single quotes. It has been changed to double quotes so name with ' will no longer cause an error. Thanks for the pr!