Page tree

Versions Compared

Key

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

...

Experiencing

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

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

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


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

<!-- tui Image Editor -->
<script type="text/javascript" src='https://synapeditor.com/se/resource/synapeditor/plugins/tuiImageEditor/tuiImageEditor.min.js'></script>
<link rel='stylesheet' href='https://synapeditor.com/se/resource/synapeditor/plugins/tuiImageEditor/tuiImageEditor.min.css'>


 <div style="background-color: #ffffff; width:99%; height:500px;">
        <textarea id="synapEditor">Textarea를>Synap Editor 이용하여intialized 초기화한with 사이냅에디터입니다Textarea.</textarea>
</div>
<script>
	console.log(document.getElementById('synapEditor').value);
	window.editor = new SynapEditor("synapEditor", synapEditorConfig, document.getElementById('synapEditor').value);
</script>

...


Configuring

Code Block
languagexml
<textarea id='synapEditor'>
	Textarea를Synap Editor 이용하여intialized 초기화한with 사이냅에디터입니다Textarea.
</textarea>

<script>
	new SynapEditor('synapEditor', synapEditorConfig, document.getElementById('synapEditor').value);
</script>

...