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

com.vladsch.flexmark.parser.internal.LinkRefProcessorData Maven / Gradle / Ivy

Go to download

Core of flexmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)

The newest version!
package com.vladsch.flexmark.parser.internal;

import com.vladsch.flexmark.parser.LinkRefProcessorFactory;

import java.util.List;

public class LinkRefProcessorData {
    final public List processors;  // sorted least nesting level to greatest nesting level
    final public int maxNesting;    // maximum desired reference link nesting level
    final public int[] nestingIndex;        // nesting level to index in ReferenceLinkProcessors for the first processor interested in that nesting level

    public LinkRefProcessorData(List processors, int maxNesting, int[] nestingIndex) {
        this.processors = processors;
        this.maxNesting = maxNesting;
        this.nestingIndex = nestingIndex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy