Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


툴바에 표시되는 글꼴을 설정 할 수 있습니다.

Warning

사이냅에디터는 글꼴 목록 설정만 가능하며 별도로 폰트파일을 제공하지 않습니다.

글꼴 설정

'editor.fontFamily'를 이용하여 툴바에 표시되는 글꼴을 설정합니다. 

Set the font families to be displayed on the toolbar.

Warning

SynapEditor can only set the font list and does not provide any font file.

Font Configuration

Set the font families to be displayed on the toolbar with 'editor.fontFamily'

General

Sets the style to be applied to the text in the form of a string.

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
	'editor.fontFamily': {
    	'koen': [
            '돋움Arial', '굴림Comic Sans MS', '바탕', '궁서Courier New', '맑은고딕Georgia',
            'ArialLucida Sans Unicode', 'Tahoma', 'Times New Roman'Comic, Sans'Trebuchet MS', 'Courier New', 'Georgia',Verdana'
        ]
    }
}


Object shape

Status
colourYellow
titleRelease 2.15.2212 or avobe

If the name to be displayed in the toolbar menu and the style to be applied to the text are different, create and set it in the form of an object as shown below.

{ label: 'Text to be displayed in the menu', value: 'Style to be applied to the text' }

설정 결과


Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
    'editor.fontFamily': {
        'en': [
            'Arial',
            { 
'Lucida Sans Unicode', 'Tahoma',
label: 'Monospaced typeface', value: 'Courier New' },
            { label: 'Serif typeface', value: 'Times New Roman' },
'Trebuchet MS
            { label: 'Sans-serif typeface', 
'Verdana
value: 'Comic Sans MS' }
        ]
    }
}
언어별 글꼴 설정


Image Added



Setting Fonts by Language

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
{
	'editor.fontFamily': {
    	'ko': [
            '돋움', '굴림', '바탕', '궁서', '맑은고딕',
            'Arial', 'Comic Sans MS', 'Courier New', 'Georgia',
            'Lucida Sans Unicode', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana'
        ],
        'en': [
            'Arial', 'Comic Sans MS', 'Courier New', 'Georgia',
            'Lucida Sans Unicode', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana'
        ]
    }
}


한국어일 때 ko
en (English)영어일 때 (en)

Image RemovedImage RemovedImage Removed

Image RemovedImage Removed

관련정보

Configuring User Language

Image AddedImage Added

ko (Korean)

Image AddedImage AddedImage Added