From f70c77e5cafc44f8cb4db0cb8642aa8f27d0f22a Mon Sep 17 00:00:00 2001 From: henrikjust Date: Mon, 27 Jul 2015 08:03:31 +0000 Subject: [PATCH] Do not use cellspacing in HTML5 git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@264 f0f2a975-2e09-46c8-9428-3b39399b9f3c --- source/distro/changelog.txt | 2 ++ source/java/writer2latex/xhtml/TableConverter.java | 9 ++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/source/distro/changelog.txt b/source/distro/changelog.txt index 23dd444..50d3c60 100644 --- a/source/distro/changelog.txt +++ b/source/distro/changelog.txt @@ -2,6 +2,8 @@ Changelog for Writer2LaTeX version 1.4 -> 1.6 ---------- version 1.6 beta ---------- +[w2x] No longer add cellspacing attribute if exporting to HTML5 + [w2l] Added support for non-ASCII BibTeX files. The new option bibtex_encoding is used to specify the encoding of the BibTeX files loaded via the option external_bibtex_files. The default value is "document" which implies the same encoding as the LaTeX document. Otherwise the same values as for inputencoding are supported. diff --git a/source/java/writer2latex/xhtml/TableConverter.java b/source/java/writer2latex/xhtml/TableConverter.java index 76655ac..bca7152 100644 --- a/source/java/writer2latex/xhtml/TableConverter.java +++ b/source/java/writer2latex/xhtml/TableConverter.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * - * Version 1.6 (2015-06-23) + * Version 1.6 (2015-07-27) * */ @@ -178,8 +178,11 @@ public class TableConverter extends ConverterHelper { private Element createTable(TableReader tblr) { Element table = converter.createElement("table"); // Apply table style - // IE needs the cellspacing attribute, as it doesn't understand the css border-spacing attribute - table.setAttribute("cellspacing","0"); + // Older versions of IE needs the cellspacing attribute, as it doesn't understand the css border-spacing attribute + // We cannot do this with HTML5 + if (!converter.isHTML5()) { + table.setAttribute("cellspacing","0"); + } applyTableStyle(tblr.getTableStyleName(), table, tblr.isSubTable()); return table; }