Skip to content

Commit 56d260c

Browse files
committed
Version 2.3.1.3
See changelog. Fix #58 and #59
1 parent 6ae669c commit 56d260c

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## LaTeX Table Editor ##
22

3-
**Version 2.3.1.2**
3+
**Version 2.3.1.3**
44

55
This is the GitHub page of an Open Source WYSIWYG table editor that exports to multiples languages including LaTeX, ConTeXt, Plain TeX, CSV, HTML, BBCode, Eplain, PreTeXt, MediaWiki, Markdown and WML.
66

src/changelog.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ Legend
66
[#] Fixed
77
Dates use a YYYY/MM/DD format.
88

9+
Version 2.3.1.3 (2022/03/05)
10+
==========
11+
12+
| Note on this release:
13+
| Bug fix
14+
15+
LATEX EXPORT
16+
17+
[#] Fatal issue when generating tables involving longtable, booktabs and background colors (#59)
18+
919
Version 2.3.1.2 (2022/01/13)
1020
==========
1121

src/js.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function $id(id) {
114114
return "[rgb]{"+sep+"}";
115115
},
116116
table = new(function() {
117-
this.version = "2.3.1.2";
117+
this.version = "2.3.1.3";
118118
this.create = function(cols, rows) {
119119
rows = parseInt(rows, 10);
120120
cols = parseInt(cols, 10);
@@ -4313,7 +4313,7 @@ this.getHTML = (function(){
43134313
if(!rotateTable){
43144314
firstPart += "{\n";
43154315
}
4316-
rotateTable += booktabColor
4316+
firstPart += booktabColor
43174317
}
43184318
if(!areSameColors(startingColor, "black")){
43194319
firstPart += "\\arrayrulecolor" + getColor(startingColor) + "\n";

0 commit comments

Comments
 (0)