Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunsDev committed May 13, 2021
1 parent 909a1f0 commit 9ccd9c1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion block/table/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ let get_table = text => {
const exp_left = /^\:-+$/
const exp_center = /^\:-+\:$/
const exp_right = /^-+\:$/
console.log(ee);
if (exp_left.test(ee)) {table_column_align.push("left"); return}
else if (exp_center.test(ee)) {table_column_align.push("center"); return}
else if (exp_right.test(ee)) {table_column_align.push("right"); return}
Expand Down
1 change: 0 additions & 1 deletion make/table/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ let get_table = text => {
const exp_left = /^\:-+$/
const exp_center = /^\:-+\:$/
const exp_right = /^-+\:$/
console.log(ee);
if (exp_left.test(ee)) {table_column_align.push("left"); return}
else if (exp_center.test(ee)) {table_column_align.push("center"); return}
else if (exp_right.test(ee)) {table_column_align.push("right"); return}
Expand Down

0 comments on commit 9ccd9c1

Please sign in to comment.