# 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
没有合适的资源?快使用搜索试试~ 我知道了~
程序员的情侣网站 代码源码
共560个文件
js:209个
html:103个
css:62个
5 下载量 137 浏览量
2023-01-26
17:28:06
上传
评论
收藏 2.74MB ZIP 举报
温馨提示
情侣网站代码java 目标(goal):部署简单,安全高效,只需修改配置,即可搭建自己的情侣网站,属于你们的小窝。 语言(language) :java(jdk11) 数据库(database):mysql 8 缓存技术(cache redis):redis5 框架技术(framework): SpringBoot2.3,Mybatis,Freemarker,Websocket 分布式存储:阿里云 OSS 集成开发环境(IDE):IntelliJ IDEA 模块(modular):聊天(chat),博客(blog),留言(message),相册(album),故事(story),ip 统计(ip statistics),邮件通知(mail notification)....
资源推荐
资源详情
资源评论
收起资源包目录
程序员的情侣网站 代码源码 (560个子文件)
AUTHORS 6KB
mvnw.cmd 6KB
editormd.css 80KB
editormd.min.css 60KB
editormd.preview.css 58KB
editormd.preview.min.css 44KB
ambiance.css 26KB
codemirror.css 9KB
jsdoc-default.css 6KB
timeline.css 5KB
codemirror.min.css 5KB
solarized.css 5KB
mdn-like.css 5KB
index.css 4KB
chat.css 4KB
merge.css 3KB
lint.css 3KB
xq-dark.css 3KB
lesser-dark.css 3KB
pastel-on-dark.css 2KB
xq-light.css 2KB
prettify-tomorrow.css 2KB
tomorrow-night-eighties.css 2KB
zenburn.css 2KB
erlang-dark.css 2KB
editormd.logo.css 2KB
twilight.css 2KB
mbo.css 2KB
midnight.css 2KB
vibrant-ink.css 2KB
base16-dark.css 2KB
base16-light.css 2KB
tern.css 2KB
3024-night.css 2KB
paraiso-dark.css 2KB
paraiso-light.css 2KB
tomorrow-night-bright.css 2KB
3024-day.css 2KB
blackboard.css 2KB
the-matrix.css 2KB
falls.css 2KB
colorforth.css 2KB
night.css 2KB
rubyblue.css 2KB
monokai.css 2KB
editormd.logo.min.css 2KB
cobalt.css 2KB
prettify-jsdoc.css 2KB
simplescrollbars.css 1KB
eclipse.css 1KB
neo.css 1KB
ip.css 932B
elegant.css 872B
neat.css 782B
show-hint.css 723B
commen.css 646B
dialog.css 542B
tiki.css 472B
foldgutter.css 457B
tiddlywiki.css 235B
matchesonscrollbar.css 200B
admin_commen.css 163B
fullscreen.css 136B
ambiance-mobile.css 109B
.editorconfig 147B
fontawesome-webfont.eot 59KB
OpenSans-LightItalic-webfont.eot 20KB
OpenSans-Italic-webfont.eot 20KB
OpenSans-BoldItalic-webfont.eot 20KB
OpenSans-Regular-webfont.eot 19KB
OpenSans-Bold-webfont.eot 19KB
OpenSans-Light-webfont.eot 19KB
editormd-logo.eot 1KB
index.ftl 16KB
image.ftl 11KB
image2.ftl 9KB
blogs.ftl 5KB
blogs.ftl 5KB
blog.ftl 4KB
chart.ftl 4KB
link.ftl 3KB
install.ftl 3KB
ip.ftl 3KB
blog.ftl 3KB
falls.ftl 2KB
header.ftl 2KB
header.ftl 2KB
timeline.ftl 2KB
login.ftl 2KB
footer.ftl 2KB
chat.ftl 2KB
index.ftl 2KB
falls2.ftl 2KB
error.ftl 1KB
loading@3x.gif 21KB
loading@2x.gif 16KB
girl.gif 9KB
loading.gif 8KB
boy.gif 6KB
loading.gif 3KB
共 560 条
- 1
- 2
- 3
- 4
- 5
- 6
资源评论
三季人G
- 粉丝: 136
- 资源: 2368
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功