elisehein/Pageturner

Unicode in Title

TheChymera opened this issue · 2 comments

Hi there. Your theme is absolutely gorgeous and I would like to use it in a blog which serves as a collaborative literature platform.

The name of the website is supposed to be Märzwasser (with an "ä", I could go for a "æ" but I wont take anything less). In any case, none of these characters are properly displayed in the title (as you can see here).

Could you give me a hand with this?

Ok, I solved this myself. Apparently most of your fonts do not support unicode.

I commented your sass/_typography.scss file:

$font-path: "../font/";

@include font-face('sorts-mill-goudy', '#{$font-path}GoudyStM-webfont');
@include font-face('sorts-mill-goudy-italic', '#{$font-path}GoudyStM-Italic-webfont');
@include font-face('museo-sans', '#{$font-path}MuseoSans'); /*supports unicode*/
@include font-face('sofia-pro-light', '#{$font-path}SofiaProLight-webfont'); /*supports unicode*/
@include font-face('bookletter', '#{$font-path}goudy_bookletter_1911-webfont');
@include font-face('governor', '#{$font-path}governor-webfont');
@include font-face('nevis', '#{$font-path}nevis-webfont');
@include font-face('calluna-regular', '#{$font-path}Calluna-Regular-webfont'); /*supports unicode*/

Thanks, great to know you found a solution!