我在我的表单中使用简单的降价编辑器,比如
<textarea id="editor-board">
<script>
var simplemde = new SimpleMDE({ element: $("#editor-area")[0] });
simplemde.value("# How are
**This is bold** This is normal
_This is italic_ This is normal
```
commands goes here
demo commands
sudo apt update
```");
但这甚至没有在 textarea 中加载插件。
然而,在设置值时value('this is simple text');
工作正常。
如何在编辑器中设置markdown语法?