com.vladsch.flexmark.docx.converter.util.HeadingBlockFormatProvider 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;
public class HeadingBlockFormatProvider extends BlockFormatProviderBase {
public HeadingBlockFormatProvider(DocxContext docx, int headingLevel) {
super(docx, docx.getRenderingOptions().HEADINGS[headingLevel]);
}
}