Skip to content
This repository was archived by the owner on Jul 30, 2020. It is now read-only.

Commit 7fda2e0

Browse files
committed
Merge branch 'development'
2 parents 82d12b1 + da4eba8 commit 7fda2e0

10 files changed

+116
-63
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ end_of_line=lf
44
insert_final_newline=true
55
indent_style=space
66
indent_size=4
7+
8+
[*.{yml,yaml}]
9+
indent_size=2

.github/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ First of all, thanks for your interest in helping make EasyMDE even better. Cont
77
- If you really want to earn some brownie points, create a JSFiddle that demonstrates your code changes. Seriously, this helps immensely and allows one or multiple people to easily provide feedback on the great work you've done.
88
- When creating the JSFiddle, keep in mind that you can use http://rawgit.com for your files.
99
- Do your best to fully test your changes. Anticipate edge-case behavior.
10-
- Try to keep your codebase that you're making changes to as up-to-date as possible with the origin. SimpleMDE creates new releases frequently, so it's easy to fall behind if you've been working on something new for a while.
10+
- Try to keep your codebase that you're making changes to as up-to-date as possible with the origin. EasyMDE creates new releases frequently, so it's easy to fall behind if you've been working on something new for a while.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ node_modules/
77
*.iws
88
.idea/
99
.vscode/
10+
dev_test/

.travis.yml

+17
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,20 @@ node_js:
66
before_script:
77
- npm install -g gulp
88
script: gulp
9+
deploy:
10+
- provider: npm
11+
12+
api_key:
13+
secure: VswGN/y8Tu9as13qQRd/zKcMRo7lpa9BWYYyw+LN4uRaustVzmFY0akOPInaajGyxvHvn9A8hY+ASNeUnpRcnVfHSNdtBlLltMm62dXVxqrWZl5cI07rXc1yerL5YcnuC8jEO9bm3lbkXL6fUt7pgk59wgEdZjUPaIpELY/1/H33RLpLGJ1P8JeIzUwuV6RqJcoULoEFoJruXWEjM+OkaJQt1z+/1JgXVxhGS/6NnKmf0pyZM+ULvgmF1l5YGwUfQl4miB8I7+GeWuYvPSDqL3YgLpxrmnw2uW4a120XtMf30awpGTF9iPZqc5VIQyOJ/8A2myGmm/r2RWXyn3WWQUYwmb4HDIuvbIGTGhW9Zd1X3Kjb14DFeD26ZB11ynOwGZPQC51rF0chK+O3PF56QKMsu8Qx56g8+pU4g3qP2txwAQjh89fTsx8I04Om/XwyoZ3eSQLkX/12oD1FcE7Fv30bVEiegN+hH3SiIofWBhhV0tUJjlrCHGgxMXb2e6XnJh9ePuvUOTW9AeWwYEQRpqnM1n6zIPci/dwGDNP9sYGBRsRMGdHlExP8FecM5/vL/3XHidk2PuRNM0BLDLibDVkwzwnHNQkpPuzrr57MKcScYy6VyLxErk88VGzNb8oZ6NFRQYmWgjX6bdFBfZFo5snB49tgRpWpCbiF5SBMNnQ=
14+
on:
15+
tags: true
16+
branch: master
17+
repo: Ionaru/easy-markdown-editor
18+
- provider: npm
19+
20+
api_key:
21+
secure: VswGN/y8Tu9as13qQRd/zKcMRo7lpa9BWYYyw+LN4uRaustVzmFY0akOPInaajGyxvHvn9A8hY+ASNeUnpRcnVfHSNdtBlLltMm62dXVxqrWZl5cI07rXc1yerL5YcnuC8jEO9bm3lbkXL6fUt7pgk59wgEdZjUPaIpELY/1/H33RLpLGJ1P8JeIzUwuV6RqJcoULoEFoJruXWEjM+OkaJQt1z+/1JgXVxhGS/6NnKmf0pyZM+ULvgmF1l5YGwUfQl4miB8I7+GeWuYvPSDqL3YgLpxrmnw2uW4a120XtMf30awpGTF9iPZqc5VIQyOJ/8A2myGmm/r2RWXyn3WWQUYwmb4HDIuvbIGTGhW9Zd1X3Kjb14DFeD26ZB11ynOwGZPQC51rF0chK+O3PF56QKMsu8Qx56g8+pU4g3qP2txwAQjh89fTsx8I04Om/XwyoZ3eSQLkX/12oD1FcE7Fv30bVEiegN+hH3SiIofWBhhV0tUJjlrCHGgxMXb2e6XnJh9ePuvUOTW9AeWwYEQRpqnM1n6zIPci/dwGDNP9sYGBRsRMGdHlExP8FecM5/vL/3XHidk2PuRNM0BLDLibDVkwzwnHNQkpPuzrr57MKcScYy6VyLxErk88VGzNb8oZ6NFRQYmWgjX6bdFBfZFo5snB49tgRpWpCbiF5SBMNnQ=
22+
tag: next
23+
on:
24+
branch: development
25+
repo: Ionaru/easy-markdown-editor

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Changes include:
1010
* Small styling changes
1111
* Support for Node 8 and beyond
1212
* Lots of refactored code
13+
* Links in preview will open in a new tab by default
1314

1415
My intention is to continue development on this project, improving it and keeping it alive.
1516

dist/easymde.min.css

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

dist/easymde.min.js

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

package-lock.json

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

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "easymde",
3-
"version": "2.0.1",
3+
"version": "2.2.1",
44
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor that easy to use. Features include autosaving and spell checking.",
55
"keywords": [
66
"embeddable",
@@ -9,16 +9,16 @@
99
"javascript",
1010
"fontawesome"
1111
],
12-
"main": "./src/js/simplemde.js",
12+
"main": "./src/js/easymde.js",
1313
"license": "MIT",
1414
"author": "Jeroen Akkerman",
1515
"bugs": {
1616
"url": "https://github.com/ionaru/easy-markdown-editor/issues"
1717
},
1818
"dependencies": {
19-
"codemirror": "^5.37.0",
19+
"codemirror": "^5.39.0",
2020
"codemirror-spell-checker": "1.1.2",
21-
"marked": "0.3.19"
21+
"marked": "^0.4.0"
2222
},
2323
"devDependencies": {
2424
"browserify": "^16.2.2",
@@ -27,7 +27,7 @@
2727
"gulp-concat": "^2.6.1",
2828
"gulp-eslint": "^4.0.0",
2929
"gulp-header": "^2.0.5",
30-
"gulp-rename": "^1.2.2",
30+
"gulp-rename": "^1.2.3",
3131
"gulp-uglify": "^3.0.0",
3232
"vinyl-buffer": "^1.0.0",
3333
"vinyl-source-stream": "^2.0.0"

0 commit comments

Comments
 (0)