markdown编辑器之editormd使用整合

不啰嗦看效果

如果觉得对你项目有用请继续深入。

007.gif

1. editor.md简介

  • 1.1 说明

    Editor.md 是一款开源的、可嵌入的 Markdown 在线编辑器(组件),基于 CodeMirror、jQuery 和 Marked 构建。

  • 1.2 项目地址

    github地址:https://github.com/pandao/editor.md

  • 1.3 项目效果图

001.png

2. 项目整合

2.1 下载editormd至自己项目根目录

如下为我的项目目录:

002.png

2.2 项目部署

引入css样式文件和js文件


  
 
 
 
 
  
  

注意:

务必引入 editormd/css/editormd.csseditormd/editormd.js两个文件。

页面textarea样式

JS调用代码


配置参数

{
 theme                : "",             // Editor.md self themes, before v1.5.0 is CodeMirror theme, 
 editorTheme          : "default",      // Editor area, this is CodeMirror theme at v1.5.0
 previewTheme         : "",             // Preview area theme, default empty 
 width                : "100%",
 height               : "100%",
 path                 : "./lib/",       // Dependents module file directory
 pluginPath           : "",             // If this empty, default use settings.path + "../plugins/"
 delay                : 300,            // Delay parse markdown to html, Uint : ms
 autoLoadModules      : true,           // Automatic load dependent module files
 watch                : true,
 placeholder          : "Enjoy Markdown! coding now...",
 gotoLine             : true,           // Enable / disable goto a line
 codeFold             : false,
 autoHeight           : false,
 autoFocus            : true,           // Enable / disable auto focus editor left input area
 autoCloseTags        : true,
 searchReplace        : true,           // Enable / disable (CodeMirror) search and replace function
 syncScrolling        : true,           // options: true | false | "single", default true
 saveHTMLToTextarea   : false,          // If enable, Editor will create a 
  • js处理

    
    
    
    
    
    
    
    
  • 效果图
image.png

5. 项目源码

  • 关注公众号“扣丁曼” 回复editormd获取项目源码。

  • 本项目采用php作为处理语言,其他语种小伙伴请各显神通。

6.联系我

  • 通过公众号“扣丁曼”(号码:qcgcoder)直接与我联系。

  • 通过我的博客获取最新资讯

    博客网址:https://52qcg.cn

你可能感兴趣的:(markdown编辑器之editormd使用整合)