Set inlineCSS to false by default

This commit is contained in:
Georgy Litvinov 2020-02-03 16:37:55 +01:00
parent ca3c2123f4
commit 59edc98c5e
2 changed files with 1 additions and 2 deletions

View file

@ -300,7 +300,7 @@ public class XhtmlConfig extends writer2latex.base.ConfigBase {
options[PAGE_TAGS] = new Option("page_tags","div");
options[MIN_LETTER_SPACING] = new Option("min_letter_spacing","0.15");
options[PAGE_BREAK_STYLE] = new Option("page_break_style","");
options[CSS_INLINE] = new BooleanOption("css_inline","true");
options[CSS_INLINE] = new BooleanOption("css_inline","false");
}

View file

@ -3,7 +3,6 @@ package writer2latex.xhtml.style.properties;
import java.util.HashMap;
import java.util.Map;
//Create a list of values separated by commas or another seperation character
public class Properties{
private String separator;
private String internalSeparator;