mirror of https://github.com/apache/poi.git
nicer HTML in Word-to-HTML converter for one-section document
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149033 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
356990061c
commit
40b9e5d383
|
@ -308,6 +308,12 @@ public abstract class AbstractWordConverter
|
|||
protected void processDocumentPart( HWPFDocumentCore wordDocument,
|
||||
final Range range )
|
||||
{
|
||||
if ( range.numSections() == 1 )
|
||||
{
|
||||
processSingleSection( wordDocument, range.getSection( 0 ) );
|
||||
return;
|
||||
}
|
||||
|
||||
for ( int s = 0; s < range.numSections(); s++ )
|
||||
{
|
||||
processSection( wordDocument, range.getSection( s ), s );
|
||||
|
|
Loading…
Reference in New Issue