satnaing / astro-paper

A minimal, accessible and SEO-friendly Astro blog theme
https://astro-paper.pages.dev/
MIT License
2.12k stars 440 forks source link

fix: resolve issue with non-Latin characters not displaying correctly on OG images using Google Fonts API #318

Open cantpr09ram opened 2 days ago

cantpr09ram commented 2 days ago

hello-你好-안녕-こんにちは-χαίρετε-hallå

before after
before_jp after_jp
before_cn after_cn

if you want more language support you can add it on your own

const fontsConfig = [
   { name: "Noto Sans JP", font: "Noto+Sans+JP", weight: 400, style: "normal", },
   { name: "Noto Sans JP", font: "Noto+Sans+JP:wght@700", weight: 700, style: "normal", }, 
   { name: "Noto Sans", font: "Noto+Sans", weight: 400, style: "normal" },
   { name: "Noto Sans", font: "Noto+Sans:wght@700", weight: 700, style: "normal", },
  ];