Page tree

Versions Compared

Key

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

Status
title릴리즈 2.4.0 이상

사이냅 에디터에서 특수기호/이모지를 사용할 수 있도록 하는 플러그인입니다.

해당 플러그인을 사용하면 '글머리 기호' 입력 시 '더 보기'를 통해 다양한 글머리를 사용 할 수 있습니다.

Image Removed

사용방법

...

It is the plugin that allows the user to use special characters/emojis in SynapEditor.

Using this plugin, you may use more kinds of bullets through 'more' while applying 'bulleted list'.

Image Added

How to Use

Loading Plugin File

Code Block
languagexml
themeEmacs
<link rel="stylesheet" href="URL of characterPicker.min.css의 urlcss">
<script src="URL of characterPicker.min.js의 urljs"></script>

UI

특수기호는 You may add the buttons to toolbar and menu with 'specialCharacter', 이모지는 and 'emoji'를 사용하여 툴바 영역, 메뉴 영역에 버튼을 추가할 수 있습니다.

...

Adding to Toolbar

Code Block
languagejs
themeEmacs
title에디터 설정
//...
'editor.toolbar': [
	//...,
	'specialCharacter', 'emoji'
	//...
],
// ...

...

Adding to Menu

Code Block
languagejs
themeEmacs
title에디터 설정
//...
'editor.menu.definition': {
	//...,
	'insert': [
		//...,
		'specialCharacter', 'emoji',
		//...
	],
	//...
},
//...

...

Shortcut

windowsmac
Ctrl+F10Cmd+F10

...