Page tree

Versions Compared

Key

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

...

경로내용설명

/workspace/SynapEditor_2.x.x/SynapEditor

Image RemovedImage Added

externals : 외부모듈 디렉토리

plugins : 플러그인 디렉토리

theme : 테마 디렉토리

license.json : 라이센스 파일

synapeditor.config.js : 환경설정 파일

synapeditor.min.css, synapedtiro.min.js : 사이냅 에디터

synapeditor.pkgd.min.css, synapeditor.pkgd.min.js : 외부모듈과 플러그인이 모두 포함된 사이냅 에디터 (shapeEditor 제외)

/workspace/SynapEditor_2.x.x/sedocConverter

Windows

Linux

임포트 모듈 (실행파일)

Windows : sedocConverter.exe, 각종 dll

Linux : sedocConverter_exe

...

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
linenumberstrue
{
   /**
     * 라이센스 파일의 경로 또는 라이센스 객체를 설정합니다.
     * ex) '/synapeditor/license.json'
     * ex)  {
                'company': 'SynapSoftSynapsoft',
                'key': [
                    'licenseKey'
                ]
            }
     */
    'editor.license': 'synapeditor/license.json',
  ...
}

...

Code Block
languagexml
themeEmacs
linenumberstrue
<!DOCTYPE html>
<html lang="ko">

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no">
<title>Synap Editor | Unlimited Rich Text Editor</title>

<!-- Synap Editor -->
<link href="synapeditor/synapeditor.min.css" rel="stylesheet" type="text/css">
<script src="synapeditor/synapeditor.config.js"></script>
<script src="synapeditor/synapeditor.min.js"></script>


<!-- Synap Editor Plugins -->
<!-- 개인정보보호도형 -->
<script src="synapeditor/plugins/personalDataProtectionshapeEditor/personalDataProtectionshapeEditor.min.js"></script>
<link rel="stylesheet" href="synapeditor/plugins/personalDataProtectionshapeEditor/personalDataProtectionshapeEditor.min.css">
<!-- 특수기호/이모지개인정보보호 -->
<script src="synapeditor/plugins/characterPickerpersonalDataProtection/characterPickerpersonalDataProtection.min.js"></script>
<link rel="stylesheet" href="synapeditor/plugins/characterPickerpersonalDataProtection/characterPickerpersonalDataProtection.min.css">
<!-- 포토에디터특수기호/이모지 -->
<script src="synapeditor/plugins/tuiImageEditorcharacterPicker/tuiImageEditorcharacterPicker.min.js"></script>
<link rel="stylesheet" href="synapeditor/plugins/tuiImageEditorcharacterPicker/tuiImageEditorcharacterPicker.min.css">
<!-- 웹접근성 검사 -->
<script src="synapeditor/plugins/webAccessibilityChecker/webAccessibilityChecker.min.min.js"></script>
<link rel="stylesheet" href="synapeditor/plugins/webAccessibilityChecker/webAccessibilityChecker.min.min.css">

<!-- Synap Editor포토에디터 Externals -->
<script type="src="synapeditor/plugins/tuiImageEditor/tuiImageEditor.min.js"></script>
<link rel="stylesheet" href="synapeditor/plugins/tuiImageEditor/tuiImageEditor.min.css">

<!-- Synap Editor Externals -->
<script type="text/javascript" src='https://www.synapeditor.com/se/resource/synapeditor/externals/formulaParser/formula-parser.min.js'></script>
<script type="text/javascript" src='https://www.synapeditor.com/se/resource/synapeditor/externals/SEDocModelParser/SEDocModelParser.min.js'></script>
<script type="text/javascript" src="'https://www.synapeditor.com/se/resource/synapeditor/externals/formulaParserSEShapeManager/formula-parserSEShapeManager.min.js"'></script>
<script type="text/javascript" src="'https://www.synapeditor.com/se/resource/synapeditor/externals/codeMirror/codemirror.min.js"'></script>
<script type="text/javascript" src="https://www.synapeditor.com/se/resource/synapeditor/externals/codeMirror/xml.min.js"></script>
<link rel="'stylesheet"' href="'https://www.synapeditor.com/se/resource/synapeditor/externals/codeMirror/codemirror.min.css"'>

<script>
function initEditor() {
	var se = new SynapEditor("synapEditor", synapEditorConfig);
}
</script>
<body onload="initEditor();">
	<div id="synapEditor"></div>
</body>
</html>

...