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

com.vladsch.flexmark.ext.wikilink.WikiLink Maven / Gradle / Ivy

There is a newer version: 0.64.8
Show newest version
package com.vladsch.flexmark.ext.wikilink;

import com.vladsch.flexmark.ast.LinkRendered;
import com.vladsch.flexmark.util.sequence.BasedSequence;

public class WikiLink extends WikiNode implements LinkRendered {
    public WikiLink(boolean linkIsFirst) {
        super(linkIsFirst);
    }

    public WikiLink(BasedSequence chars, boolean linkIsFirst, boolean allowAnchors, boolean canEscapePipe, boolean canEscapeAnchor) {
        super(chars, linkIsFirst, allowAnchors, canEscapePipe, canEscapeAnchor);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy