Page tree

Versions Compared

Key

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

...

Code Block
languagejs
themeEmacs
titleJavascript (v2.2.0 이상)
linenumberstrue
<script src='httphttps://www.synapeditor.com/resource/synapeditor/synapeditor.config.js'></script>
<script src='httphttps://www.synapeditor.com/resource/synapeditor/synapeditor.min.js'></script>
<script>
		window.editor = new SynapEditor('synapEditor', synapEditorConfig);
</script>

...

HTML
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>

<!-- code mirror -->
<script type="text/javascript" src='httphttps://www.synapeditor.com/se/resource/synapeditor/externals/codeMirror/codemirror.min.js'></script>
<script type="text/javascript" src="httphttps://www.synapeditor.com/se/resource/synapeditor/externals/codeMirror/xml.min.js"></script>
<link rel='stylesheet' href='httphttps://www.synapeditor.com/se/resource/synapeditor/externals/codeMirror/codemirror.min.css'>

<!-- formular parser -->
<script type="text/javascript" src='httphttps://www.synapeditor.com/se/resource/synapeditor/externals/formulaParser/formula-parser.min.js'></script>


<!-- Synap Editor -->
<script src='httphttps://www.synapeditor.com/se/resource/synapeditor.config.js'></script>
<script src='httphttps://www.synapeditor.com/se/resource/synapeditor/synapeditor.min.js'></script>
<link href='httphttps://www.synapeditor.com/se/resource/synapeditor/synapeditor.min.css' rel='stylesheet' type='text/css'>

<!-- tui Image Editor -->
<script type="text/javascript" src='httphttps://www.synapeditor.com/se/resource/synapeditor/plugins/tuiImageEditor/tuiImageEditor.min.js'></script>
<link rel='stylesheet' href='httphttps://www.synapeditor.com/se/resource/synapeditor/plugins/tuiImageEditor/tuiImageEditor.min.css'>
<div style="background-color: #ffffff; width:99%; height:300px;">
        <div id="synapEditor"></div>
</div>
<script>
		window.editor = new SynapEditor('synapEditor', synapEditorConfig);
</script>

...

Code Block
languagejs
themeEmacs
titleJavascript (v2.1.0 이하)
linenumberstrue
<script src='httphttps://www.synapeditor.com/resource/synapeditor/synapeditor.min.js'></script>
<script>
		window.editor = new SynapEditor('synapEditor', 'config.json');
</script>

...