如何設定「Mardown Preview」的中文字型
選擇功能選單「Edit / Open Your Stylesheet」,
編輯「~/.atom/styles.less」,
加入下面的程式碼。重新開啟「Atom」,就會生效了。
@font-family: "Liberation Mono", "Noto Sans CJK TC", monospace;
.markdown-preview {
font-family: @font-family;
font-size:18px;
code,
tt,
atom-text-editor {
font-family: @font-family;
}
}
以上範例,請參考「Gihub / atom / markdown-preview / styles / markdown-preview.less」