com.vladsch.flexmark.docx.converter.util.IsolatingBlockFormatProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-docx-converter Show documentation
Show all versions of flexmark-docx-converter Show documentation
flexmark-java extension for rendering docx format
package com.vladsch.flexmark.docx.converter.util;
import org.docx4j.wml.PPr;
public class IsolatingBlockFormatProvider extends BlockFormatProviderBase {
public IsolatingBlockFormatProvider(DocxContext docx) {
super(docx, docx.getRenderingOptions().DEFAULT_STYLE);
}
@Override
protected void inheritBdr(PPr pPr, PPr parentPPr) {
}
@Override
protected void inheritIndent(PPr pPrBase, PPr parentPrBase) {
}
}