MarkdownエディタTyporaの日本語フォントがWindowsではダサダサであるのをなんとかする
Typoraはシンプルでとても使い勝手のよいMarkdownエディタで、現状では無料で利用できます。私は最近これにハマっています。
漢字の表示問題
とても気に入っているのですが、Windows環境で日本語を使用すると、表示フォントの漢字部分がダサダサになるという問題があります。これはひょっとしたら私の環境だけに依存した問題かもしれません。一体どのフォントが使用されているのかも分かっていません。
フォントのカスタマイズの公式情報
以下に、公式のカスタマイズ方法のガイドを見つけました。但しこの方法でbase.user.css
をtheme
フォルダに置いて、body
のfont-family
を一括指定する場合、元々のthemeで指定してあったフォント指定を上書きしてしまい、せっかく美しい欧文フォントの指定まで影響を受けます。ここは、下記のようにテーマ毎に対応するべきです。
Custom Font http://support.typora.io/Custom-Font/
Add Custom CSS http://support.typora.io/Add-Custom-CSS/
解決策
個別のテーマ毎に、カスタマイズ用のCSSを準備することができます。
Preference > Advanced Settings > Open Theme Folder で次のフォルダが開きます。
C:\Users\<username>\AppData\Roaming\Typora\themes
個別のtheme毎に(例えばgithub.css)、body
のfont-family
属性を調べた上で、それを元に日本語フォント指定を追加した、以下のようなCSSを準備して、github.user.css
と命名して、上記のフォルダに置くと、設定が反映されます。
CSSの実例
github.user.css
body {
font-family: "Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif,"Hiragino Kaku Gothic ProN","MS PGothic";
}
newsprint.user.css
body {
font-family: "PT Serif", 'Times New Roman', Times,"Hiragino Mincho ProN","MS PMincho";
}
night.user.css
html,
body,
button,
input,
select,
textarea {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif,"Hiragino Kaku Gothic ProN","MS PGothic";
}
pixyll.user.css
body {
font-family: "Merriweather", "PT Serif", Georgia, "Times New Roman", "STSong", Serif,"Hiragino Mincho ProN","MS PMincho";
}
white.user.css
body {
font-family: "Vollkorn", Palatino, Times,"Hiragino Mincho ProN","MS PMincho";
}
body {
font-family: "Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif,"Hiragino Kaku Gothic ProN","MS PGothic";
}
body {
font-family: "PT Serif", 'Times New Roman', Times,"Hiragino Mincho ProN","MS PMincho";
}
html,
body,
button,
input,
select,
textarea {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif,"Hiragino Kaku Gothic ProN","MS PGothic";
}
body {
font-family: "Merriweather", "PT Serif", Georgia, "Times New Roman", "STSong", Serif,"Hiragino Mincho ProN","MS PMincho";
}
body {
font-family: "Vollkorn", Palatino, Times,"Hiragino Mincho ProN","MS PMincho";
}
Author And Source
この問題について(MarkdownエディタTyporaの日本語フォントがWindowsではダサダサであるのをなんとかする), 我々は、より多くの情報をここで見つけました https://qiita.com/kouichi-c-nakamura/items/45947bcbc954ea611593著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .