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

com.vladsch.flexmark.ext.macros.internal.MacroFormatOptions Maven / Gradle / Ivy

package com.vladsch.flexmark.ext.macros.internal;

import com.vladsch.flexmark.ext.macros.MacrosExtension;
import com.vladsch.flexmark.util.data.DataHolder;
import com.vladsch.flexmark.util.format.options.ElementPlacement;
import com.vladsch.flexmark.util.format.options.ElementPlacementSort;

public class MacroFormatOptions {

    final public ElementPlacement macrosPlacement;
    final public ElementPlacementSort macrosSort;

    public MacroFormatOptions(DataHolder options) {
        macrosPlacement = MacrosExtension.MACRO_DEFINITIONS_PLACEMENT.get(options);
        macrosSort = MacrosExtension.MACRO_DEFINITIONS_SORT.get(options);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy