1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

Delete escaped quotation marks between fonts

Delete addtional single quotation marks between the font name Microsoft YaHei
This commit is contained in:
RedBug312
2017-10-29 11:42:35 +08:00
committed by GitHub
parent d6f2e7588c
commit bfa8db7b55

View File

@@ -92,7 +92,7 @@ const OSX = global.process.platform === 'darwin'
const defaultFontFamily = ['helvetica', 'arial', 'sans-serif'] const defaultFontFamily = ['helvetica', 'arial', 'sans-serif']
if (!OSX) { if (!OSX) {
defaultFontFamily.unshift('\'Microsoft YaHei\'') defaultFontFamily.unshift('Microsoft YaHei')
defaultFontFamily.unshift('meiryo') defaultFontFamily.unshift('meiryo')
} }
const defaultCodeBlockFontFamily = ['Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'monospace'] const defaultCodeBlockFontFamily = ['Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'monospace']