com.vladsch.flexmark.docx.converter.util.SourceCodeRunFormatProvider 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.RPr;
public class SourceCodeRunFormatProvider extends RunFormatProviderBase {
public SourceCodeRunFormatProvider(DocxContext docx, boolean noCharacterStyles, String useHighlightShading) {
super(docx, docx.getRenderingOptions().INLINE_CODE_STYLE, noCharacterStyles, useHighlightShading);
}
@Override
public void getRPr(RPr rPr) {
super.getRPr(rPr);
}
}