com.vladsch.flexmark.ext.wikilink.WikiLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-wikilink Show documentation
Show all versions of flexmark-ext-wikilink Show documentation
flexmark-java extension parsing and rendering wiki links
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);
}
}