Page tree

Versions Compared

Key

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

주민등록번호, 이메일, 전화번호와 같은 개인정보들을 필터링하여 '*'로 치환해주는 플러그인입니다.

사용방법

플러그인 파일 불러오기

Code Block
languagexml
themeEmacs
<link rel="stylesheet" href="personalDataProtection.min.css의 url">
<script src="personalDataProtection.min.js의 url"></script>

UI에 플러그인 버튼 추가

툴바에 추가

Code Block
languagejs
themeEmacs
titlesynapEditorConfig
//...
'editor.toolbar': [
	//...,
	'personalDataProtection',
	//...
],
// ...

메뉴 → 도구에 추가

Code Block
languagejs
themeEmacs
titlesynapEditorConfig
//...
'editor.menu.definition': {
	//...,
	'tools': [
		//...,
		'personalDataProtection',
		//...
	],
	//...
},
//...