2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-15 22:14:28 -06:00

Fix table spacing

Removed an extra space that caused the tables to be wrongly aligned, when the table button was pressed.
This commit is contained in:
adriaanzon 2016-01-06 15:46:26 +01:00
parent 0ce602f68d
commit aa2ebfe983

View File

@ -828,7 +828,7 @@ var toolbarBuiltInButtons = {
var insertTexts = {
link: ["[", "](http://)"],
image: ["![](http://", ")"],
table: ["", "\n\n| Column 1 | Column 2 | Column 3 |\n| -------- | -------- | -------- |\n| Text | Text | Text |\n\n"],
table: ["", "\n\n| Column 1 | Column 2 | Column 3 |\n| -------- | -------- | -------- |\n| Text | Text | Text |\n\n"],
horizontalRule: ["", "\n\n-----\n\n"]
};