mirror of https://github.com/apache/poi.git
fix CSS error in word-to-html
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1145061 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7e4be8f2ba
commit
b691e6a530
|
@ -122,12 +122,12 @@ public class WordToHtmlUtils extends AbstractWordUtils
|
|||
if ( isEmpty( fontFamily ) )
|
||||
return;
|
||||
|
||||
style.append( "font-family: " + fontFamily );
|
||||
style.append( "font-family: " + fontFamily + "; " );
|
||||
}
|
||||
|
||||
public static void addFontSize( final int fontSize, StringBuilder style )
|
||||
{
|
||||
style.append( "font-size: " + fontSize );
|
||||
style.append( "font-size: " + fontSize + "; " );
|
||||
}
|
||||
|
||||
public static void addIndent( Paragraph paragraph, StringBuilder style )
|
||||
|
|
Loading…
Reference in New Issue