Set tables width to relative by default
This commit is contained in:
parent
fcce0d14d6
commit
31af77c9a1
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ public class XhtmlConfig extends writer2latex.base.ConfigBase {
|
||||||
options[FRAME_FORMATTING] = new XhtmlFormatOption("frame_formatting","convert_all");
|
options[FRAME_FORMATTING] = new XhtmlFormatOption("frame_formatting","convert_all");
|
||||||
options[SECTION_FORMATTING] = new XhtmlFormatOption("section_formatting","convert_all");
|
options[SECTION_FORMATTING] = new XhtmlFormatOption("section_formatting","convert_all");
|
||||||
options[TABLE_FORMATTING] = new XhtmlFormatOption("table_formatting","convert_all");
|
options[TABLE_FORMATTING] = new XhtmlFormatOption("table_formatting","convert_all");
|
||||||
options[TABLE_SIZE] = new IntegerOption("table_size","auto") {
|
options[TABLE_SIZE] = new IntegerOption("table_size","relative") {
|
||||||
@Override public void setString(String sValue) {
|
@Override public void setString(String sValue) {
|
||||||
super.setString(sValue);
|
super.setString(sValue);
|
||||||
if ("relative".equals(sValue)) { nValue = RELATIVE; }
|
if ("relative".equals(sValue)) { nValue = RELATIVE; }
|
||||||
|
|
Loading…
Add table
Reference in a new issue