| 1234567891011121314151617181920212223242526 | (function() {  $(function() {    var editor;    editor = new Simditor({      textarea: $('#txt-content1'),      placeholder: '这里输入文字...',      pasteImage: true,      toolbar: ['title', 'bold', 'italic', 'underline', 'strikethrough', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent'],      defaultImage: 'assets/images/image.png',      upload: location.search === '?upload' ? {        url: '/upload'      } : false    });    return editor = new Simditor({      textarea: $('#txt-content2'),      placeholder: '这里输入文字...',      pasteImage: true,      toolbar: ['title', 'bold', 'italic', 'underline', 'strikethrough', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent'],      defaultImage: 'assets/images/image.png',      upload: location.search === '?upload' ? {        url: '/upload'      } : false    });  });}).call(this);
 |