# Editor.md
![](https://pandao.github.io/editor.md/images/logos/editormd-logo-180x180.png)
![](https://img.shields.io/github/stars/pandao/editor.md.svg)
![](https://img.shields.io/github/forks/pandao/editor.md.svg)
![](https://img.shields.io/github/tag/pandao/editor.md.svg)
![](https://img.shields.io/github/release/pandao/editor.md.svg)
![](https://img.shields.io/github/issues/pandao/editor.md.svg)
![](https://img.shields.io/bower/v/editor.md.svg)
**Editor.md** : The open source embeddable online markdown editor (component), based on CodeMirror & jQuery & Marked.
### Features
- Support Standard Markdown / CommonMark and GFM (GitHub Flavored Markdown);
- Full-featured: Real-time Preview, Image (cross-domain) upload, Preformatted text/Code blocks/Tables insert, Code fold, Search replace, Read only, Themes, Multi-languages, L18n, HTML entities, Code syntax highlighting...;
- Markdown Extras : Support [ToC (Table of Contents)](https://pandao.github.io/editor.md/examples/toc.html), [Emoji](https://pandao.github.io/editor.md/examples/emoji.html), [Task lists](https://pandao.github.io/editor.md/examples/task-lists.html), [@Links](https://pandao.github.io/editor.md/examples/@links.html)...;
- Compatible with all major browsers (IE8+), compatible Zepto.js and iPad;
- Support [decode & fliter of the HTML tags & attributes](https://pandao.github.io/editor.md/examples/html-tags-decode.html);
- Support [TeX (LaTeX expressions, Based on KaTeX)](https://pandao.github.io/editor.md/examples/katex.html), [Flowchart](https://pandao.github.io/editor.md/examples/flowchart.html) and [Sequence Diagram](https://pandao.github.io/editor.md/examples/sequence-diagram.html) of Markdown extended syntax;
- Support AMD/CMD (Require.js & Sea.js) Module Loader, and Custom/define editor plugins;
[README & Examples (English)](https://pandao.github.io/editor.md/en.html)
--------
**Editor.md** 是一款开源的、可嵌入的 Markdown 在线编辑器(组件),基于 CodeMirror、jQuery 和 Marked 构建。
![editormd-screenshot](https://pandao.github.io/editor.md/examples/images/editormd-screenshot.png "editormd-screenshot")
#### 主要特性
- 支持通用 Markdown / CommonMark 和 GFM (GitHub Flavored Markdown) 风格的语法,也可[变身为代码编辑器](https://pandao.github.io/editor.md/examples/change-mode.html);
- 支持实时预览、图片(跨域)上传、预格式文本/代码/表格插入、代码折叠、跳转到行、搜索替换、只读模式、自定义样式主题和多语言语法高亮等功能;
- 支持 [ToC(Table of Contents)](https://pandao.github.io/editor.md/examples/toc.html)、[Emoji表情](https://pandao.github.io/editor.md/examples/emoji.html)、[Task lists](https://pandao.github.io/editor.md/examples/task-lists.html)、[@链接](https://pandao.github.io/editor.md/examples/@links.html)等 Markdown 扩展语法;
- 支持 TeX 科学公式(基于 [KaTeX](https://pandao.github.io/editor.md/examples/katex.html))、流程图 [Flowchart](https://pandao.github.io/editor.md/examples/flowchart.html) 和 [时序图 Sequence Diagram](https://pandao.github.io/editor.md/examples/sequence-diagram.html);
- 支持[识别和解析 HTML 标签,并且支持自定义过滤标签及属性解析](https://pandao.github.io/editor.md/examples/html-tags-decode.html),具有可靠的安全性和几乎无限的扩展性;
- 支持 AMD / CMD 模块化加载(支持 [Require.js](https://pandao.github.io/editor.md/examples/use-requirejs.html) & [Sea.js](https://pandao.github.io/editor.md/examples/use-seajs.html)),并且支持[自定义扩展插件](https://pandao.github.io/editor.md/examples/define-plugin.html);
- 兼容主流的浏览器(IE8+)和 [Zepto.js](https://pandao.github.io/editor.md/examples/use-zepto.html),且支持 iPad 等平板设备;
#### Examples
[https://pandao.github.io/editor.md/examples/index.html](https://pandao.github.io/editor.md/examples/index.html)
#### Download & install
[Github download](https://github.com/pandao/editor.md/archive/master.zip)
Bower install :
```shell
bower install editor.md
```
#### Usages
HTML:
```html
<link rel="stylesheet" href="editormd.min.css" />
<div id="editormd">
<textarea style="display:none;">### Hello Editor.md !</textarea>
</div>
```
> Tip: Editor.md can auto append `<textarea>` tag;
javascript:
```html
<script src="jquery.min.js"></script>
<script src="editormd.min.js"></script>
<script type="text/javascript">
$(function() {
var editor = editormd("editormd", {
path : "../lib/" // Autoload modules mode, codemirror, marked... dependents libs path
});
/*
// or
var editor = editormd({
id : "editormd",
path : "../lib/"
});
*/
});
</script>
```
Using modular script loader :
- [Using Require.js](https://github.com/pandao/editor.md/tree/master/examples/use-requirejs.html)
- [Using Sea.js](https://github.com/pandao/editor.md/tree/master/examples/use-seajs.html)
#### Dependents
- [CodeMirror](http://codemirror.net/ "CodeMirror")
- [marked](https://github.com/chjj/marked "marked")
- [jQuery](http://jquery.com/ "jQuery")
- [FontAwesome](http://fontawesome.io/ "FontAwesome")
- [github-markdown.css](https://github.com/sindresorhus/github-markdown-css "github-markdown.css")
- [KaTeX](http://khan.github.io/KaTeX/ "KaTeX")
- [prettify.js](http://code.google.com/p/google-code-prettify/ "prettify.js")
- [Rephael.js](http://raphaeljs.com/ "Rephael.js")
- [flowchart.js](http://adrai.github.io/flowchart.js/ "flowchart.js")
- [sequence-diagram.js](http://bramp.github.io/js-sequence-diagrams/ "sequence-diagram.js")
- [Prefixes.scss](https://github.com/pandao/prefixes.scss "Prefixes.scss")
#### Changes
[Change logs](https://github.com/pandao/editor.md/blob/master/CHANGE.md)
#### License
The MIT License.
Copyright (c) 2015 Pandao
没有合适的资源?快使用搜索试试~ 我知道了~
在线客服PHP源码 可对接H5/网页/小程序/公众号/APP多平台
共2370个文件
png:1121个
js:408个
gif:188个
需积分: 47 7 下载量 186 浏览量
2022-09-09
10:11:59
上传
评论 2
收藏 17.2MB ZIP 举报
温馨提示
PHP在线客服系统 支持添加客服无限座限、对客服进行评价管理,可对接H5/网页/小程序/公众号/APP多平台, 可在线对客户管理,在线聊天有表情包,对话框中可在线传图片文件等功能,有文字教程 PHP在线客服系统 支持添加客服无限座限、对客服进行评价管理,可对接H5/网页/小程序/公众号/APP多平台, 可在线对客户管理,在线聊天有表情包,对话框中可在线传图片文件等功能,有文字教程 PHP在线客服系统 支持添加客服无限座限、对客服进行评价管理,可对接H5/网页/小程序/公众号/APP多平台, 可在线对客户管理,在线聊天有表情包,对话框中可在线传图片文件等功能,有文字教程
资源推荐
资源详情
资源评论
收起资源包目录
在线客服PHP源码 可对接H5/网页/小程序/公众号/APP多平台 (2370个子文件)
AUTHORS 6KB
online.js.bak 21KB
pignose.calendar.svggpa4vl#pignose.calendar 666B
web.config 586B
web.config 164B
web.config 164B
style.css 433KB
amazeui.css 324KB
amazeui.min.css 249KB
materialdesignicons.min.css 128KB
bootstrap.min.css 115KB
bootstrap.min.css 107KB
editormd.css 76KB
layui.css 73KB
layui.css 73KB
emojify.css 68KB
ionicons.css 62KB
editormd.min.css 60KB
animate.min.css 57KB
loaders.css 56KB
editormd.preview.css 55KB
weui.css 50KB
linea.css 48KB
ueditor.css 47KB
editormd.preview.min.css 44KB
layout.css 44KB
chatStyle.css 38KB
ueditor.min.css 36KB
font-awesome.min.css 30KB
ambiance.css 26KB
weather-icons.min.css 23KB
video-js.css 21KB
admin.css 21KB
bootstrap-theme.min.css 19KB
image.css 19KB
swiper-3.4.1.min.css 17KB
select2.css 17KB
themify-icons.css 16KB
video.css 16KB
attachment.css 15KB
select2.min.css 15KB
layer.css 14KB
layer.css 14KB
cryptocoins.css 14KB
pignose.calendar.min.css 13KB
flag-icon.min.css 12KB
simple-line-icons.css 12KB
chartist.min.css 11KB
video-js.min.css 11KB
pe-icon-set-weather.min.css 10KB
layui.mobile.css 10KB
bootstrap-select.min.css 10KB
reset.css 9KB
wcPop.css 8KB
laydate.css 8KB
codemirror.css 8KB
laydate.css 7KB
shCoreDefault.css 7KB
datetimepicker.css 7KB
jsdoc-default.css 6KB
datetimepicker.min.css 6KB
styles.css 6KB
codemirror.min.css 5KB
mdn-like.css 5KB
solarized.css 5KB
qunit-1.16.0.css 5KB
scrawl.css 4KB
animate.css 4KB
cryptocoins-colors.css 4KB
merge.css 3KB
background.css 3KB
lint.css 3KB
codemirror.css 3KB
xq-dark.css 3KB
charts.css 3KB
amazeui.tree.css 2KB
lesser-dark.css 2KB
login.css 2KB
pastel-on-dark.css 2KB
xq-light.css 2KB
metisMenu.min.css 2KB
tomorrow-night-eighties.css 2KB
editormd.logo.css 2KB
erlang-dark.css 2KB
prettify-tomorrow.css 2KB
zenburn.css 2KB
amazeui.tree.min.css 2KB
twilight.css 2KB
midnight.css 2KB
vibrant-ink.css 2KB
mbo.css 2KB
base16-dark.css 2KB
base16-light.css 2KB
style.css 2KB
tern.css 2KB
emotion.css 2KB
3024-night.css 2KB
paraiso-dark.css 2KB
paraiso-light.css 2KB
dialogbase.css 2KB
共 2370 条
- 1
- 2
- 3
- 4
- 5
- 6
- 24
资源评论
yxkfw
- 粉丝: 81
- 资源: 2万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 密码学AES算法源代码
- 读取、查询和修改 Microsoft Word 2007,2008 docx 文件 .zip
- 三维地形图计算软件(三)-原基于PYQT5+pyqtgraph.opengl旧代码
- 分布式编程作业1的源代码
- 该库为 ASR 提供了常见的语音特征,包括 MFCC 和滤波器组能量 .zip
- 该存储库将包含基本的 Python 编程问题及其解决方案 .zip
- 该存储库包含 100 多个 Python 编程练习问题,以不同的方式进行讨论、解释和解决.zip
- 虚拟 Python 环境构建器.zip
- 洪涝灾害应急信息-JAVA-基于springBoot洪涝灾害应急信息管理系统设计与实现(毕业论文+PPT)
- 嗨玩旅游网站-JAVA-基于springboot嗨玩旅游网站设计与实现(毕业论文+PPT)
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功