tp5手机网站开发,wordpress json 输出,施工企业成本管理,汽车网站建设多少钱Editor.md 是一款开源的、可嵌入的 Markdown 在线编辑器#xff08;组件#xff09;#xff0c;基于 CodeMirror、jQuery 和 Marked 构建。 文章目录一、技术选型及分支部署二、集成手册2.1. 下载项目2.2. 创建数据库2.3. 初始化数据库脚本2.4. 修改数据库用户名/密码 默认r… Editor.md 是一款开源的、可嵌入的 Markdown 在线编辑器组件基于 CodeMirror、jQuery 和 Marked 构建。 文章目录一、技术选型及分支部署二、集成手册2.1. 下载项目2.2. 创建数据库2.3. 初始化数据库脚本2.4. 修改数据库用户名/密码 默认root/root2.5. 启动项目 任选其一即可2.6. 浏览器输入localhost访问2.8. 编辑博文2.9. 源码地址一、技术选型及分支部署
SpringBoot整合Editor.md构建Markdown编辑器共分为三个版本
框架SpringBoot1.xMarkdown插件Editor.md持久层框架SpringBootJPA部署分支master
框架SpringBoot2.xMarkdown插件Editor.md持久层框架SpringBootJPA部署分支dev
框架SpringBoot2.xMarkdown插件Editor.md持久层框架MybatisPLus部署分支test
预览地址http://localhost/editorWeb/preview/{id}编辑地址http://localhost/editorWeb/edit/{id}博客地址https://blog.csdn.net/weixin_40816738/article/details/103160267Github 下载https://github.com/gb-heima/editor-markdown
二、集成手册
2.1. 下载项目
git clone gitgithub.com:gb-heima/editor-markdown.git2.2. 创建数据库
数据 库名 : editor-markdown 数据库编码: utf-8
2.3. 初始化数据库脚本
master分支和dev分支脚本
DROP TABLE IF EXISTS editor;
CREATE TABLE editor (id int(11) NOT NULL AUTO_INCREMENT,text_content longtext,content longtext,create_time date DEFAULT NULL,PRIMARY KEY (id)
) ENGINEInnoDB AUTO_INCREMENT5 DEFAULT CHARSETutf8;test分支脚本
DROP TABLE IF EXISTS editor;
CREATE TABLE editor (id bigint(20) NOT NULL COMMENT 主键,text_content longtext COMMENT 内容,content longtext,create_time datetime DEFAULT NULL COMMENT 修改日期,PRIMARY KEY (id)
) ENGINEInnoDB DEFAULT CHARSETutf8;2.4. 修改数据库用户名/密码 默认root/root 2.5. 启动项目 任选其一即可 2.6. 浏览器输入localhost访问
默认为博文发表页面 7.预览博文 预览博文http://localhost/editorWeb/preview/{id}
2.8. 编辑博文
编辑博文http://localhost/editorWeb/edit/{id}
2.9. 源码地址
https://github.com/gb-heima/editor-markdown/tree/master
到这里 SpringBoot集成Editor.md已经完成了 下一篇SpringBoot集成Editor.md 流程详细 https://blog.csdn.net/weixin_40816738/article/details/103162025