Skip to content

Commit

Permalink
Releases v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pandao committed Apr 7, 2015
1 parent 6a83ac9 commit f368df1
Show file tree
Hide file tree
Showing 24 changed files with 313 additions and 75 deletions.
14 changes: 13 additions & 1 deletion CHANGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -417,4 +417,16 @@ v1.2.0 主要更新:
- 新增插入分页符的工具栏图标和方法`pagebreak()`
- 新增插入分页符的快捷键`Shift + Alt + P`
- 修复一些Bug,包括[#51](https://github.com/pandao/editor.md/issues/51)等;
- 新增和修改以上更新的相关示例;
- 新增和修改以上更新的相关示例;

####v1.4.1

- 新增配置项`syncScrolling`,即是否开启同步滚动预览,默认值为`false`
- 修复Bug[64](https://github.com/pandao/editor.md/issues/64)
- 更新`editormd.katexURL`资源地址的默认值,即更新版本为`0.3.0`
- 新增测试用例`tests/katex-tests.html`
- 修改示例文件`examples/katex.html`
- 修复Bug[66](https://github.com/pandao/editor.md/issues/66)
- 修改`editormd.emoji``editormd.twemoji`属性,即去掉`http:`,以匹配`https:`
- 修复编辑器工具栏按钮`:hover` CSS3 transition无效的问题;
- 修改`README.md`
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
![](https://img.shields.io/github/issues/pandao/editor.md.svg)
![](https://img.shields.io/bower/v/editor.md.svg)

**Editor.md** is the open source online markdown editor, based on CodeMirror & jQuery & Marked.
**Editor.md** is the open source online markdown editor (component), based on CodeMirror & jQuery & Marked.

### Features

- Support Standard Markdown and GFM(GitHub Flavored Markdown);
- 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;
Expand All @@ -27,14 +27,14 @@
--------


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

![editormd-screenshot](https://pandao.github.io/editor.md/examples/images/editormd-screenshot.png "editormd-screenshot")

#### 主要特性

- 支持“标准”Markdown和Github风格的语法,也可[变身为代码编辑器](https://pandao.github.io/editor.md/examples/change-mode.html)
- 支持实时预览、图片(跨域)上传、预格式文本/代码/表格插入、代码折叠、搜索替换、只读模式、自定义样式主题和多语言语法高亮等功能;
- 支持“标准”Markdown/CommonMark和Github风格的语法,也可[变身为代码编辑器](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),具有可靠的安全性和几乎无限的扩展性;
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "editor.md",
"version": "1.4.0",
"version": "1.4.1",
"homepage": "https://github.com/pandao/editor.md",
"authors": [
"Pandao <[email protected]>"
Expand Down
12 changes: 6 additions & 6 deletions css/editormd.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* Editor.md
*
* @file /editormd.css
* @version v1.4.0
* @version v1.4.1
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-03-23
* @updateTime 2015-04-07
*/

@charset "UTF-8";
Expand Down Expand Up @@ -117,17 +117,17 @@
-o-border-radius: 2px;
border-radius: 2px;
border: 1px solid #fff;
}
.editormd-menu > li > a:hover, .editormd-menu > li > a.active {
border: 1px solid #ddd;
background: #eee;
-webkit-transition: all 300ms ease-out;
/* Safari, Chrome */
-moz-transition: all 300ms ease-out;
/* Firefox 4.0~16.0 */
transition: all 300ms ease-out;
/* IE >9, FF >15, Opera >12.0 */
}
.editormd-menu > li > a:hover, .editormd-menu > li > a.active {
border: 1px solid #ddd;
background: #eee;
}
.editormd-menu > li > a > .fa {
text-align: center;
display: block;
Expand Down
4 changes: 2 additions & 2 deletions css/editormd.logo.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* Editor.md
*
* @file /editormd.logo.css
* @version v1.4.0
* @version v1.4.1
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-03-23
* @updateTime 2015-04-07
*/

/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */
Expand Down
2 changes: 1 addition & 1 deletion css/editormd.logo.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f368df1

Please sign in to comment.