登录 注册
当前位置:主页 > 资源下载 > 50 > 在线Markdown编辑器

在线Markdown编辑器

  • 更新:2024-08-18 20:11:08
  • 大小:210KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:RAR

资源介绍

插件描述:Editor.md 是一款可嵌入的 Markdown 在线编辑器(组件),基于 CodeMirror、jQuery 和 Marked 构建。 Editor.md 前端引用css: <link rel="stylesheet" href="css/editormd.css" /> html文本框设置:
<textarea name="content" </div> 前端引用js: [removed][removed] 引用代码片段: 27 var testEditor; $(function() { $.get("examples/test.md", function(md){ testEditor = editormd("test-editormd", { width: "98%", height: 730, path : 'lib/', markdown : md, codeFold : true, saveHTMLToTextarea : true, searchReplace : true, htmlDecode : "style,script,iframe|on*", emoji : true, taskList : true, tocm : true, // Using [TOCM] tex : true, // 开启科学公式TeX语言支持,默认关闭 flowChart : true, // 开启流程图支持,默认关闭 sequenceDiagram : true, // 开启时序/序列图支持,默认关闭, imageUpload : true, imageFormats : ["jpg", "jpeg", "gif", "png", "bmp", "webp"], imageUploadURL : "examples/php/upload.php", onload : function() { console.log('onload', this); } }); }); }) 读取markdown显示引入css文件: 1 <link rel="stylesheet" href="css/editormd.css" /> 读取markdown显示html实例:
<textarea name="editormd-markdown-doc">这里写入md格式内容</textarea>
读取markdown显示前端js调用