All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.docx.converter.util.SourceCodeRunFormatProvider Maven / Gradle / Ivy

There is a newer version: 0.64.8
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy