Skip to content

Commit b1778ed

Browse files
committed
0.1.4
1 parent 3e93a73 commit b1778ed

File tree

7 files changed

+11
-12
lines changed

7 files changed

+11
-12
lines changed

CHANGELOG.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
## 0.1.3
2-
1. 默认缩进调整为 4 个空格
3-
2. 修正两个 insert*** 方法的拼写错误
1+
## 0.1.4
2+
1. 修正两个 insert*** 方法的拼写错误
43

54
## 0.1.2
65
1. 增加快捷键(可以自定义)

build/css/mditor.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* mditor , 一个简洁、易于集成、方便扩展、期望舒服的编写 markdown 的编辑器
3-
* @version v0.1.3
3+
* @version v0.1.4
44
* @homepage http://houfeng.net/mditor
55
* @license MIT
66
* @author Houfeng

build/css/mditor.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/js/mditor.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* mditor , 一个简洁、易于集成、方便扩展、期望舒服的编写 markdown 的编辑器
3-
* @version v0.1.3
3+
* @version v0.1.4
44
* @homepage http://houfeng.net/mditor
55
* @license MIT
66
* @author Houfeng
@@ -347,14 +347,14 @@ var Mditor = window.Mditor = module.exports = function (editor, options) {
347347
self._bindCommands();
348348
};
349349

350-
Mditor.version = "0.1.3";
350+
Mditor.version = "0.1.4";
351351

352352
Mditor.prototype._init = function () {
353353
var self = this;
354354
self.platform = navigator.platform.toLowerCase();
355355
self.EOL = self.platform == 'win32' ? '\r\n' : '\n';
356356
self.CMD = self.platform.indexOf('mac') > -1 ? 'command' : 'ctrl';
357-
self.INDENT = ' ';
357+
self.INDENT = '\t';
358358
return self;
359359
};
360360

build/js/mditor.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Mditor.prototype._init = function () {
4444
self.platform = navigator.platform.toLowerCase();
4545
self.EOL = self.platform == 'win32' ? '\r\n' : '\n';
4646
self.CMD = self.platform.indexOf('mac') > -1 ? 'command' : 'ctrl';
47-
self.INDENT = ' ';
47+
self.INDENT = '\t';
4848
return self;
4949
};
5050

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mditor",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "一个简洁、易于集成、方便扩展、期望舒服的编写 markdown 的编辑器",
55
"main": "./lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)