26 lines
1.0 KiB
PHP
26 lines
1.0 KiB
PHP
<meta charset="utf-8" />
|
|
<script src="../include/vditor-adapter.js"></script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
HustOJVditor.initTextareaVditors({
|
|
selector: 'textarea.kindeditor',
|
|
uploadUrl: '../kindeditor/php/upload_json.php',
|
|
accept: '*/*',
|
|
mode: 'sv',
|
|
preview: {
|
|
mode: 'both',
|
|
delay: 0,
|
|
actions: [],
|
|
markdown: {
|
|
sanitize: false,
|
|
autoSpace: false,
|
|
fixTermTypo: false
|
|
}
|
|
}
|
|
}).catch(function (error) {
|
|
console.error('Failed to initialize Vditor.', error);
|
|
});
|
|
});
|
|
</script>
|
|
|